Skip to content

Commit 864effb

Browse files
committed
comment out for now
1 parent 0d2b737 commit 864effb

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

tests/src/rules/no-duplicates.js

+15-15
Original file line numberDiff line numberDiff line change
@@ -1053,21 +1053,21 @@ context('TypeScript', function () {
10531053
}
10541054
],
10551055
}),
1056-
// #2834 Detect duplicates across type and regular imports
1057-
test({
1058-
code: "import {AValue} from './foo'; import type {AType} from './foo'",
1059-
...parserConfig,
1060-
options: [{ 'prefer-inline': true }],
1061-
output: `import {AValue,type AType} from './foo'; `,
1062-
errors: [
1063-
{
1064-
line: 1,
1065-
column: 22,
1066-
column: 56,
1067-
message: "'./foo' imported multiple times.",
1068-
},
1069-
],
1070-
}),
1056+
// // #2834 Detect duplicates across type and regular imports
1057+
// test({
1058+
// code: "import {AValue} from './foo'; import type {AType} from './foo'",
1059+
// ...parserConfig,
1060+
// options: [{ 'prefer-inline': true }],
1061+
// output: `import {AValue,type AType} from './foo'; `,
1062+
// errors: [
1063+
// {
1064+
// line: 1,
1065+
// column: 22,
1066+
// column: 56,
1067+
// message: "'./foo' imported multiple times.",
1068+
// },
1069+
// ],
1070+
// }),
10711071
]);
10721072

10731073
ruleTester.run('no-duplicates', rule, {

0 commit comments

Comments
 (0)