Skip to content

Commit 0e7eb18

Browse files
committed
only run in Node 18+
1 parent 40ea319 commit 0e7eb18

File tree

1 file changed

+4
-1
lines changed
  • dev-packages/node-integration-tests/suites/tracing/tedious

1 file changed

+4
-1
lines changed

dev-packages/node-integration-tests/suites/tracing/tedious/test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
import { conditionalTest } from '../../../utils';
12
import { cleanupChildProcesses, createRunner } from '../../../utils/runner';
23

34
jest.setTimeout(75000);
45

5-
describe('tedious auto instrumentation', () => {
6+
// Tedious version we are testing against only supports Node 18+
7+
// https://github.com/tediousjs/tedious/blob/8310c455a2cc1cba83c1ca3c16677da4f83e12a9/package.json#L38
8+
conditionalTest({ min: 18 })('tedious auto instrumentation', () => {
69
afterAll(() => {
710
cleanupChildProcesses();
811
});

0 commit comments

Comments
 (0)