Skip to content

Commit 790d9af

Browse files
committedNov 10, 2021
[Tests] skip 2020 test in eslint < 6
1 parent 3fbc252 commit 790d9af

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎tests/src/rules/no-import-module-exports.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import path from 'path';
22
import { RuleTester } from 'eslint';
33

4-
import { test } from '../utils';
4+
import { test, testVersion } from '../utils';
55

66
const ruleTester = new RuleTester({
77
parserOptions: { ecmaVersion: 6, sourceType: 'module' },
@@ -15,7 +15,7 @@ const error = {
1515
};
1616

1717
ruleTester.run('no-import-module-exports', rule, {
18-
valid: [
18+
valid: [].concat(
1919
test({
2020
code: `
2121
const thing = require('thing')
@@ -64,7 +64,7 @@ ruleTester.run('no-import-module-exports', rule, {
6464
`,
6565
filename: path.join(process.cwd(), 'tests/files/missing-entrypoint/cli.js'),
6666
}),
67-
test({
67+
testVersion('>= 6', () => ({
6868
code: `
6969
import fs from 'fs/promises';
7070
@@ -113,8 +113,8 @@ ruleTester.run('no-import-module-exports', rule, {
113113
parserOptions: {
114114
ecmaVersion: 2020,
115115
},
116-
}),
117-
],
116+
})) || [],
117+
),
118118
invalid: [
119119
test({
120120
code: `

0 commit comments

Comments
 (0)
Please sign in to comment.