Skip to content

Commit bf32085

Browse files
committed
fix test-all-versions for instr-tedious by skipping testing tedious@1 with Node.js 24. tedious@1 cannot run with Node.js 24
1 parent 7fe3396 commit bf32085

File tree

1 file changed

+8
-1
lines changed
  • packages/instrumentation-tedious

1 file changed

+8
-1
lines changed

packages/instrumentation-tedious/.tav.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
tedious:
22
- versions:
3-
include: ">=1.11.0 <12"
3+
include: ">=1.11.0 <2"
4+
mode: latest-majors
5+
# tedious@1 uses tls.createSecurePair() which was removed in Node.js 24
6+
# (https://nodejs.org/api/all.html#DEP0064).
7+
node: "<24"
8+
commands: npm run test
9+
- versions:
10+
include: ">=2 <12"
411
# 4.0.0 is broken: https://github.com/tediousjs/tedious/commit/4eceb48
512
exclude: "4.0.0"
613
mode: latest-majors

0 commit comments

Comments
 (0)