File size: 474 Bytes
8b6297d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 { ValidateService } from './validate.service';

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

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

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

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