We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c248e2 commit 908005aCopy full SHA for 908005a
packages/auth/test/integration/webdriver/util/test_server.ts
@@ -16,7 +16,7 @@
16
*/
17
18
import * as path from 'path';
19
-import express from 'express';
+import * as express from 'express';
20
import { Server } from 'http';
21
22
const PORT_NUMBER = '4100';
@@ -31,7 +31,7 @@ const INTEGRATION_TEST_ASSETS = express.static(
31
32
/** Simple express server for serving up the static files for testing */
33
class AuthTestServer {
34
- private app = express();
+ private app = express.default();
35
private server: Server | null = null;
36
37
constructor() {
0 commit comments