File size: 467 Bytes
97dab2a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Test, TestingModule } from '@nestjs/testing';
import { ShipperService } from './shipper.service';

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

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

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

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