Skip to content

Commit 4b2e0c7

Browse files
committed
Format test-server file
1 parent d37c578 commit 4b2e0c7

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

tests/test-server/server.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
import path from "path";
2-
import express, {type Express, type Request, type Response, type NextFunction} from "express";
2+
import express, {
3+
type Express,
4+
type NextFunction,
5+
type Request,
6+
type Response,
7+
} from "express";
38

49
let app: Express = express();
510

611
app.use(async (req: Request, resp: Response, next: NextFunction) => {
712
resp.setHeader("Access-Control-Allow-Origin", "*");
8-
next()
13+
next();
914
});
1015

1116
app.use(

0 commit comments

Comments
 (0)