import { Test, TestingModule } from '@nestjs/testing';
import { XeroTestingService } from './xero-testing.service';

describe('XeroTestingService', () => {
  let service: XeroTestingService;

  beforeEach(async () => {
    const module: TestingModule = await Test.createTestingModule({
      providers: [XeroTestingService],
    }).compile();

    service = module.get<XeroTestingService>(XeroTestingService);
  });

  it('should be defined', () => {
    expect(service).toBeDefined();
  });
});
