Skip to content

Commit

Permalink
chore: ignore e2e test from jest
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraghazra committed Apr 9, 2024
1 parent 7b582e1 commit d72fa3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/blade/jest.native.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const ignores = ['/node_modules/'];
const ignores = ['/node_modules/', 'e2e.test'];

module.exports = {
preset: 'react-native',
Expand Down
2 changes: 1 addition & 1 deletion packages/blade/jest.web.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const ignores = ['/node_modules/'];
const ignores = ['/node_modules/', 'e2e.test'];

const baseConfig = {
testPathIgnorePatterns: [...ignores, 'native.test'],
Expand Down

0 comments on commit d72fa3c

Please sign in to comment.