Files
pcpuma_unam_api/src/bcrypt/bcrypt.service.spec.ts
T

19 lines
460 B
TypeScript
Raw Normal View History

2022-04-21 17:49:08 -05:00
import { Test, TestingModule } from '@nestjs/testing';
import { BcryptService } from './bcrypt.service';
describe('BcryptService', () => {
let service: BcryptService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [BcryptService],
}).compile();
service = module.get<BcryptService>(BcryptService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});