Files
production-evyos-systems-an…/ServicesApi/src/auth/logout/logout.service.spec.ts
2025-07-25 22:46:37 +03:00

19 lines
460 B
TypeScript

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();
});
});