19 lines
482 B
TypeScript
19 lines
482 B
TypeScript
import { Test, TestingModule } from '@nestjs/testing';
|
|
import { AppConfigService } from './app-config.service';
|
|
|
|
describe('AppConfigService', () => {
|
|
let service: AppConfigService;
|
|
|
|
beforeEach(async () => {
|
|
const module: TestingModule = await Test.createTestingModule({
|
|
providers: [AppConfigService],
|
|
}).compile();
|
|
|
|
service = module.get<AppConfigService>(AppConfigService);
|
|
});
|
|
|
|
it('should be defined', () => {
|
|
expect(service).toBeDefined();
|
|
});
|
|
});
|