import { Test, TestingModule } from '@nestjs/testing'; import { ShipmentsService } from '@/shipments/shipments.service'; describe('ShipmentsService', () => { let service: ShipmentsService; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ providers: [ShipmentsService], }).compile(); service = module.get(ShipmentsService); }); it('should be defined', () => { expect(service).toBeDefined(); }); });