Skip to content

Commit 681b591

Browse files
committed
fix integration tests
1 parent 09fb5c5 commit 681b591

File tree

1 file changed

+2
-2
lines changed
  • dev-packages/node-integration-tests/suites/contextLines

1 file changed

+2
-2
lines changed

dev-packages/node-integration-tests/suites/contextLines/test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { join } from 'path';
22
import { conditionalTest } from '../../utils';
33
import { createRunner } from '../../utils/runner';
44

5-
describe('ContextLines integration in CJS', () => {
5+
conditionalTest({ min: 18 })('ContextLines integration in ESM', () => {
66
test('reads encoded context lines from filenames with spaces', done => {
77
expect.assertions(1);
88
const instrumentPath = join(__dirname, 'instrument.mjs');
@@ -39,7 +39,7 @@ describe('ContextLines integration in CJS', () => {
3939
});
4040
});
4141

42-
conditionalTest({ min: 18 })('ContextLines integration in ESM', () => {
42+
describe('ContextLines integration in CJS', () => {
4343
test('reads context lines from filenames with spaces', done => {
4444
expect.assertions(1);
4545

0 commit comments

Comments
 (0)