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 c0c84d8 commit 38320d4Copy full SHA for 38320d4
1 file changed
dev-packages/node-integration-tests/suites/tracing/prisma-orm-v7/test.ts
@@ -1,11 +1,13 @@
1
-import { afterAll, describe, expect } from 'vitest';
+import { afterAll, expect } from 'vitest';
2
+import { conditionalTest } from '../../../utils';
3
import { cleanupChildProcesses, createEsmAndCjsTests } from '../../../utils/runner';
4
5
afterAll(() => {
6
cleanupChildProcesses();
7
});
8
-describe('Prisma ORM v7 Tests', () => {
9
+// Prisma 7 requires Node.js 20.19+
10
+conditionalTest({ min: 20 })('Prisma ORM v7 Tests', () => {
11
createEsmAndCjsTests(
12
__dirname,
13
'scenario.mjs',
0 commit comments