Skip to content

Commit

Permalink
Remove babel from back jest config
Browse files Browse the repository at this point in the history
  • Loading branch information
soupette committed Apr 8, 2019
1 parent 7027606 commit 85bec88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions jest.config.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ module.exports = {
'<rootDir>/out-tsc/',
'<rootDir>/test/',
],
transform: {},
};
9 changes: 4 additions & 5 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ module.exports = {
name: 'setup',
displayName: 'Setup',
testMatch: ['**/test/?(*.)+(spec|test).js'],
testPathIgnorePatterns: [
'<rootDir>/packages/',
],
testPathIgnorePatterns: ['<rootDir>/packages/'],
coveragePathIgnorePatterns: [
'<rootDir>/dist/',
'<rootDir>/node_modules/',
'<rootDir>/out-tsc/',
'<rootDir>/test/'
]
'<rootDir>/test/',
],
transform: {},
};

0 comments on commit 85bec88

Please sign in to comment.