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