Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jan 7, 2024
1 parent 2f683c3 commit 39f99c4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
9 changes: 5 additions & 4 deletions package.json
Expand Up @@ -68,9 +68,9 @@
"expect-type": "^0.16.0",
"express": "^4.18.2",
"pify": "^6.1.0",
"playwright": "^1.39.0",
"playwright": "^1.40.1",
"raw-body": "^2.5.2",
"ts-node": "^10.9.1",
"tsx": "^4.7.0",
"typescript": "^5.2.2",
"xo": "^0.56.0"
},
Expand All @@ -94,8 +94,9 @@
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
"--import=tsx/esm"
],
"workerThreads": false
},
"nyc": {
"reporter": [
Expand Down
4 changes: 2 additions & 2 deletions test/headers.ts
Expand Up @@ -43,7 +43,7 @@ test('`user-agent`', async t => {
server.get('/', echoHeaders);

const headers = await ky.get(server.url).json<IncomingHttpHeaders>();
t.is(headers['user-agent'], 'undici');
t.is(headers['user-agent'], 'node');
});

test('`accept-encoding`', async t => {
Expand Down Expand Up @@ -82,7 +82,7 @@ test('does not remove user headers from `url` object argument', async t => {
.json<IncomingHttpHeaders>();

t.is(headers.accept, 'application/json');
t.is(headers['user-agent'], 'undici');
t.is(headers['user-agent'], 'node');
t.is(headers['accept-encoding'], 'gzip, deflate');
t.is(headers['x-request-id'], 'value');
});
Expand Down
7 changes: 1 addition & 6 deletions tsconfig.json
Expand Up @@ -2,10 +2,5 @@
"extends": "@sindresorhus/tsconfig",
"include": [
"source"
],
"ts-node": {
"transpileOnly": true,
"files": true,
"experimentalResolver": true
}
]
}

0 comments on commit 39f99c4

Please sign in to comment.