PBL6-informative-system / backend /src /validate /validate.service.spec.ts
Trần Viết Sơn
Revert "Revert "Feature/update user""
8b6297d unverified
raw
history blame
474 Bytes
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();
});
});