Skip to content

Commit 0b9e315

Browse files
committed
Use Node.js v24 for tests
1 parent 4257e07 commit 0b9e315

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/end-to-end-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
fail-fast: false
5151
matrix:
52-
node-version: [20.x, 23.x]
52+
node-version: [20.x, 24.x]
5353
steps:
5454
- uses: actions/checkout@v4
5555
- name: Use Node.js ${{ matrix.node-version }}
@@ -71,7 +71,7 @@ jobs:
7171
cargo install wasm-pack
7272
- run: npm install
7373
- run: npm run build
74-
- if: matrix.node-version != '23.x'
74+
- if: matrix.node-version != '24.x'
7575
run: npm run end2end
76-
- if: matrix.node-version == '23.x'
76+
- if: matrix.node-version == '24.x'
7777
run: npm run end2end:new

library/agent/hooks/instrumentation/getExportsForBuiltin.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ t.test(
2828
"writeFileSync",
2929
"constants",
3030
"promises",
31-
"F_OK",
3231
// ...
3332
])
3433
);

0 commit comments

Comments
 (0)