【发布时间】:2021-02-24 00:41:12
【问题描述】:
在使用 Nestjs 运行测试 e2e 以测试 dto 时,我遇到了错误 ECONNREFUSED 127.0.0.1:80。
这是我的代码:
const TEST_URL = 'test';
@Controller(TEST_URL)
class TestController {
@Post()
public test(@Body() param: TimeTableParam) {
// nothing
}
}
describe('TimeTableParam', () => {
let app: INestApplication;
beforeAll(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [TestController],
}).compile();
app = module.createNestApplication();
await app.init();
});
afterAll(async () => {
await app.close();
});
describe('...', () => {
it(`should ...`, () => {
//...
});
});
});
【问题讨论】:
标签: nestjs e2e-testing