Skip to content

Commit

Permalink
test: fix parser options
Browse files Browse the repository at this point in the history
  • Loading branch information
azat-io committed May 25, 2023
1 parent 050d20d commit 8a65c69
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
5 changes: 0 additions & 5 deletions test/sort-array-includes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ import { SortType, SortOrder } from '~/typings'
describe(RULE_NAME, () => {
let ruleTester = new ESLintUtils.RuleTester({
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
})

describe(`${RULE_NAME}: sorting by alphabetical order`, () => {
Expand Down
5 changes: 0 additions & 5 deletions test/sort-map-elements.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ import { SortType, SortOrder } from '~/typings'
describe(RULE_NAME, () => {
let ruleTester = new ESLintUtils.RuleTester({
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
})

describe(`${RULE_NAME}: sorting by alphabetical order`, () => {
Expand Down
5 changes: 0 additions & 5 deletions test/sort-union-types.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ import { SortType, SortOrder } from '~/typings'
describe(RULE_NAME, () => {
let ruleTester = new ESLintUtils.RuleTester({
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
})

it(`${RULE_NAME}: sorts union types by length`, () => {
Expand Down

0 comments on commit 8a65c69

Please sign in to comment.