Skip to content

Commit 9198439

Browse files
committed
Update test file imports to reflect new location of the parserOptionsMapper util
1 parent 87e008e commit 9198439

32 files changed

+34
-31
lines changed

__tests__/src/rules/accessible-emoji-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// -----------------------------------------------------------------------------
1010

1111
import { RuleTester } from 'eslint';
12-
import parserOptionsMapper from '../../../src/util/parserOptionsMapper';
12+
import parserOptionsMapper from '../../__util__/parserOptionsMapper';
1313
import rule from '../../../src/rules/accessible-emoji';
1414

1515
// -----------------------------------------------------------------------------

__tests__/src/rules/anchor-has-content-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// -----------------------------------------------------------------------------
1010

1111
import { RuleTester } from 'eslint';
12-
import parserOptionsMapper from '../../../src/util/parserOptionsMapper';
12+
import parserOptionsMapper from '../../__util__/parserOptionsMapper';
1313
import rule,
1414
{ determineChildType } from '../../../src/rules/anchor-has-content';
1515

__tests__/src/rules/aria-activedescendant-has-tabindex-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// -----------------------------------------------------------------------------
99

1010
import { RuleTester } from 'eslint';
11-
import parserOptionsMapper from '../../../src/util/parserOptionsMapper';
11+
import parserOptionsMapper from '../../__util__/parserOptionsMapper';
1212
import rule from '../../../src/rules/aria-activedescendant-has-tabindex';
1313

1414
// -----------------------------------------------------------------------------

__tests__/src/rules/aria-props-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// -----------------------------------------------------------------------------
1010

1111
import { RuleTester } from 'eslint';
12-
import parserOptionsMapper from '../../../src/util/parserOptionsMapper';
12+
import parserOptionsMapper from '../../__util__/parserOptionsMapper';
1313
import rule from '../../../src/rules/aria-props';
1414
import ariaAttributes from '../../../src/util/attributes/ARIA.json';
1515
import getSuggestion from '../../../src/util/getSuggestion';

__tests__/src/rules/aria-proptypes-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
import { RuleTester } from 'eslint';
1212
import ariaAttributes from '../../../src/util/attributes/ARIA.json';
13-
import parserOptionsMapper from '../../../src/util/parserOptionsMapper';
13+
import parserOptionsMapper from '../../__util__/parserOptionsMapper';
1414
import rule, { validityCheck } from '../../../src/rules/aria-proptypes';
1515

1616
// -----------------------------------------------------------------------------

__tests__/src/rules/aria-role-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
import { RuleTester } from 'eslint';
1212
import assign from 'object-assign';
13-
import parserOptionsMapper from '../../../src/util/parserOptionsMapper';
13+
import parserOptionsMapper from '../../__util__/parserOptionsMapper';
1414
import rule from '../../../src/rules/aria-role';
1515
import ROLES from '../../../src/util/attributes/role.json';
1616

__tests__/src/rules/aria-unsupported-elements-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// -----------------------------------------------------------------------------
1111

1212
import { RuleTester } from 'eslint';
13-
import parserOptionsMapper from '../../../src/util/parserOptionsMapper';
13+
import parserOptionsMapper from '../../__util__/parserOptionsMapper';
1414
import DOM from '../../../src/util/attributes/DOM.json';
1515
import rule from '../../../src/rules/aria-unsupported-elements';
1616

__tests__/src/rules/click-events-have-key-events-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// -----------------------------------------------------------------------------
1010

1111
import { RuleTester } from 'eslint';
12-
import parserOptionsMapper from '../../../src/util/parserOptionsMapper';
12+
import parserOptionsMapper from '../../__util__/parserOptionsMapper';
1313
import rule from '../../../src/rules/click-events-have-key-events';
1414

1515
// -----------------------------------------------------------------------------

__tests__/src/rules/heading-has-content-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// -----------------------------------------------------------------------------
1010

1111
import { RuleTester } from 'eslint';
12-
import parserOptionsMapper from '../../../src/util/parserOptionsMapper';
12+
import parserOptionsMapper from '../../__util__/parserOptionsMapper';
1313
import rule,
1414
{ determineChildType } from '../../../src/rules/heading-has-content';
1515

__tests__/src/rules/href-no-hash-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// -----------------------------------------------------------------------------
1010

1111
import { RuleTester } from 'eslint';
12-
import parserOptionsMapper from '../../../src/util/parserOptionsMapper';
12+
import parserOptionsMapper from '../../__util__/parserOptionsMapper';
1313
import rule from '../../../src/rules/href-no-hash';
1414

1515
// -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)