発生したエラー
突如、 supertest がエラーを吐き出した。
FAIL test/app.e2e-spec.ts
● Test suite failed to run
TypeScript diagnostics (customize using `[jest-config].globals.ts-jest.diagnostics` option):
test/app.e2e-spec.ts:20:16 - error TS2349: This expression is not callable.
Type 'typeof supertest' has no call signatures.
20 return request(app.getHttpServer())
~~~~~~~
test/app.e2e-spec.ts:2:1
2 import * as request from 'supertest';
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Type originates at this import. A namespace-style import cannot be called or constructed, and will cause a failure at runtime. Consider using a default import or import require here instead.
環境
"typescript": "^3.7.4"
- "@types/supertest": "^2.0.8"
+ "@types/supertest": "^2.0.10"
"supertest": "^4.0.2"
解決方法
request.default のような形で呼び出すように変更する。
it('/ (GET)', () => {
return request.default(app.getHttpServer())
.get('/')
.expect(200)
.expect('Hello World!');
});
ひとこと
本体のほうで変更があったのかな…
1時間以上溶かした…