Files
docmost_custom/apps/server/src/integrations/environment/environment.service.spec.ts
T
2024-03-21 20:09:25 +00:00

19 lines
495 B
TypeScript

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