Skip to content

Commit b52d133

Browse files
committed
Fix CI
1 parent b0e3001 commit b52d133

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@
5353
"@sindresorhus/tsconfig": "^2.0.0",
5454
"@type-challenges/utils": "^0.1.1",
5555
"@types/body-parser": "^1.19.1",
56-
"@types/busboy": "^0.2.4",
56+
"@types/busboy": "^0.3.1",
5757
"@types/express": "^4.17.13",
5858
"@types/node-fetch": "^2.5.10",
5959
"@types/pify": "^5.0.1",
6060
"abort-controller": "^3.0.0",
61-
"ava": "^4.0.0-alpha.2",
61+
"ava": "4.0.0-alpha.2",
6262
"body-parser": "^1.19.0",
6363
"busboy": "^0.3.1",
6464
"del-cli": "^4.0.1",
@@ -67,9 +67,9 @@
6767
"form-data": "^4.0.0",
6868
"node-fetch": "^2.6.1",
6969
"pify": "^5.0.0",
70-
"playwright-chromium": "^1.15.2",
70+
"playwright-chromium": "^1.16.3",
7171
"raw-body": "^2.4.1",
72-
"ts-node": "^10.3.0",
72+
"ts-node": "^10.4.0",
7373
"typescript": "^4.4.4",
7474
"xo": "^0.45.0"
7575
},

test/browser.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ test('FormData with searchParams ("multipart/form-data" parser)', withPage, asyn
289289
});
290290
server.post('/', async (request, response) => {
291291
const [body, error] = await new Promise(resolve => {
292+
// @ts-expect-error
292293
const busboy = new Busboy({headers: request.headers});
293294
busboy.on('error', (error: Error) => {
294295
resolve([null, error]);

0 commit comments

Comments
 (0)