auth services implmented
This commit is contained in:
18
ServicesApi/src/auth/logout/logout.service.spec.ts
Normal file
18
ServicesApi/src/auth/logout/logout.service.spec.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { LogoutService } from './logout.service';
|
||||
|
||||
describe('LogoutService', () => {
|
||||
let service: LogoutService;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
providers: [LogoutService],
|
||||
}).compile();
|
||||
|
||||
service = module.get<LogoutService>(LogoutService);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(service).toBeDefined();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user