northwind-api-gateway / apps /apigateway /src /modules /northwind /northwind.service.spec.ts
mishrabp's picture
Upload folder using huggingface_hub
97dab2a verified
import { Test, TestingModule } from '@nestjs/testing';
import { NorthwindService } from './northwind.service';
describe('NorthwindapiService', () => {
let service: NorthwindService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [NorthwindService],
}).compile();
service = module.get<NorthwindService>(NorthwindService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});