Skip to content

Commit

Permalink
feat: Ignore babel.config.js. (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyfarrell authored and JaKXz committed Jan 21, 2019
1 parent 752be13 commit 24af6eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/test-exclude/index.js
Expand Up @@ -142,7 +142,8 @@ exportFunc.defaultExclude = [
'test{,-*}.js',
'**/*{.,-}test.js',
'**/__tests__/**',
'**/node_modules/**'
'**/node_modules/**',
'**/babel.config.js'
];

module.exports = exportFunc;
3 changes: 2 additions & 1 deletion packages/test-exclude/test/test-exclude.js
Expand Up @@ -140,7 +140,8 @@ describe('testExclude', function() {
'test{,-*}.js',
'**/*{.,-}test.js',
'**/__tests__/**',
'**/node_modules/**'
'**/node_modules/**',
'**/babel.config.js'
]);
});

Expand Down

0 comments on commit 24af6eb

Please sign in to comment.