Skip to content

Commit

Permalink
Suppress jest/expect-expect ESLint problems for E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous committed Aug 26, 2024
1 parent 09b0486 commit 4ca5f8c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ const config = {
'jest/unbound-method': 'error',
},
},
{
files: ['test/e2e/__tests__/**/*'],
rules: {
'jest/expect-expect': 'off',
},
},
],
};

Expand Down

0 comments on commit 4ca5f8c

Please sign in to comment.