Skip to content

Commit 24dc093

Browse files
committed
conditionally run test for Node 18
1 parent 1d5a844 commit 24dc093

File tree

1 file changed

+3
-1
lines changed
  • dev-packages/node-integration-tests/suites/tracing/ai

1 file changed

+3
-1
lines changed

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

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

3-
describe('ai', () => {
4+
// `ai` SDK only support Node 18+
5+
conditionalTest({ min: 18 })('ai', () => {
46
afterAll(() => {
57
cleanupChildProcesses();
68
});

0 commit comments

Comments
 (0)