Skip to content

Commit 401e7ab

Browse files
committed
test: fix codestyle
1 parent aeda6b7 commit 401e7ab

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

test/fetch.mjs

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -292,13 +292,16 @@ export default Test => [
292292
return new Promise(resolve => {
293293
const server = app.listen(0, async () => {
294294
const cookieJar = new CookieJar();
295-
const response = await fetch(cookieJar, `http://localhost:${server.address().port}/`, {
296-
method: "PUT"
297-
});
295+
const response = await fetch(
296+
cookieJar,
297+
`http://localhost:${server.address().port}/`,
298+
{
299+
method: "PUT"
300+
}
301+
);
298302
server.close();
299303
resolve(response.ok);
300304
});
301-
302305
});
303306
})
304307
];

0 commit comments

Comments
 (0)