Skip to content

Commit 908005a

Browse files
committed
Update Express import
1 parent 0c248e2 commit 908005a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/auth/test/integration/webdriver/util/test_server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
import * as path from 'path';
19-
import express from 'express';
19+
import * as express from 'express';
2020
import { Server } from 'http';
2121

2222
const PORT_NUMBER = '4100';
@@ -31,7 +31,7 @@ const INTEGRATION_TEST_ASSETS = express.static(
3131

3232
/** Simple express server for serving up the static files for testing */
3333
class AuthTestServer {
34-
private app = express();
34+
private app = express.default();
3535
private server: Server | null = null;
3636

3737
constructor() {

0 commit comments

Comments
 (0)