0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

supertest で "Type 'typeof supertest' has no call signatures." の エラー

Last updated at Posted at 2020-08-29

発生したエラー

突如、 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.

Screen Shot 2020-08-30 at 7.51.40.png

環境

"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時間以上溶かした…

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?