Skip to content

Commit e516921

Browse files
committed
Add newline
1 parent 0638a47 commit e516921

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

end2end/tests-new/hono-pg-ts-esm.test.js

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@ const port2 = "4007";
1111
test("it blocks request in blocking mode", async () => {
1212
const server = spawn(
1313
`node`,
14-
["--require", "@aikidosec/firewall/instrument", "--experimental-strip-types", "./app.ts", port],
14+
[
15+
"--require",
16+
"@aikidosec/firewall/instrument",
17+
"--experimental-strip-types",
18+
"./app.ts",
19+
port,
20+
],
1521
{
1622
cwd: pathToAppDir,
1723
env: {
@@ -73,7 +79,13 @@ test("it blocks request in blocking mode", async () => {
7379
test("it does not block request in monitoring mode", async () => {
7480
const server = spawn(
7581
`node`,
76-
["--require", "@aikidosec/firewall/instrument", "--experimental-strip-types", "./app.ts", port2],
82+
[
83+
"--require",
84+
"@aikidosec/firewall/instrument",
85+
"--experimental-strip-types",
86+
"./app.ts",
87+
port2,
88+
],
7789
{
7890
cwd: pathToAppDir,
7991
env: {
@@ -130,4 +142,4 @@ test("it does not block request in monitoring mode", async () => {
130142
} finally {
131143
server.kill();
132144
}
133-
});
145+
});

sample-apps/hono-pg-ts-esm/db.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ export async function createConnection(): Promise<pg.Client> {
1919
`);
2020

2121
return client;
22-
}
22+
}

0 commit comments

Comments
 (0)