hospital-log/backend/api/src/modules/auth/guard/auth.guard.spec.ts

10 lines
287 B
TypeScript
Raw Normal View History

import { JwtService } from '@nestjs/jwt';
import { AuthGuard } from './auth.guard';
import { ConfigService } from '@nestjs/config';
describe('AuthGuard', () => {
it('should be defined', () => {
expect(new AuthGuard(new JwtService(), new ConfigService())).toBeDefined();
});
});