在使用Nestjs运行测试e2e以测试dto时,我有一个错误e2e。
这是我的代码:
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 ...`, () => {
//...
});
});
});发布于 2020-11-12 01:32:23
修复方法确实很简单,但很难找到。多亏了这个线程,这就是我所做的:
const TEST_URL = '/test';
^ add a '/'https://stackoverflow.com/questions/64796640
复制相似问题