[タスク 1176: 開発環境コンテナの構築(Client/Server)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/OMDSDictation/_workitems/edit/1176) 開発用コンテナを構築しました。以下のコンテナを追加しています。 - ライセンス管理 - server - client - ディクテーション管理 - server - client - DB(MySQL) - Cache(Redis)
20 lines
525 B
TypeScript
20 lines
525 B
TypeScript
import { Test, TestingModule } from '@nestjs/testing';
|
|
import { HealthController } from './health.controller';
|
|
|
|
describe('HealthController', () => {
|
|
let healthController: HealthController;
|
|
|
|
beforeEach(async () => {
|
|
const app: TestingModule = await Test.createTestingModule({
|
|
controllers: [HealthController],
|
|
providers: [],
|
|
}).compile();
|
|
|
|
healthController = app.get<HealthController>(HealthController);
|
|
});
|
|
|
|
it('should be defined', () => {
|
|
expect(healthController).toBeDefined();
|
|
});
|
|
});
|