Merged PR 474: ビルドエラー修正
## 概要 [Task2815: ビルドエラー修正](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2815) ビルドエラー修正 ## レビューポイント なし ## UIの変更 なし ## 動作確認状況 UT確認 ## 補足 なし
This commit is contained in:
parent
34cf80d636
commit
1eedc5c0be
@ -1,5 +1,6 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { TermsController } from './terms.controller';
|
||||
import { TermsService } from './terms.service';
|
||||
|
||||
describe('TermsController', () => {
|
||||
let controller: TermsController;
|
||||
@ -7,6 +8,7 @@ describe('TermsController', () => {
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
controllers: [TermsController],
|
||||
providers: [TermsService],
|
||||
}).compile();
|
||||
|
||||
controller = module.get<TermsController>(TermsController);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user