Files
hoppscotch/packages/hoppscotch-backend/src/auth/auth.service.spec.ts
2023-01-09 19:02:14 +05:30

19 lines
446 B
TypeScript

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