We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40ea319 commit 0e7eb18Copy full SHA for 0e7eb18
dev-packages/node-integration-tests/suites/tracing/tedious/test.ts
@@ -1,8 +1,11 @@
1
+import { conditionalTest } from '../../../utils';
2
import { cleanupChildProcesses, createRunner } from '../../../utils/runner';
3
4
jest.setTimeout(75000);
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', () => {
9
afterAll(() => {
10
cleanupChildProcesses();
11
});
0 commit comments