Evo.Auth/apps/api/src/ldap/ldap.service.spec.ts
2023-08-01 14:27:51 +03:00

20 lines
485 B
TypeScript

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