-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 17191/onboarding-unit-tests
- Loading branch information
Showing
5 changed files
with
578 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// nyc is our coverage reporter for mocha, and currently is collecting | ||
// coverage for .yarn folder. all of these are default excludes except the | ||
// .yarn/** entry. This entire file should be removable once we complete the | ||
// migration from mocha to jest in the app folder. | ||
module.exports = { | ||
exclude: [ | ||
'coverage/**', | ||
'packages/*/test/**', | ||
'test/**', | ||
'test{,-*}.js', | ||
'**/*{.,-}test.js', | ||
'**/__tests__/**', | ||
'**/node_modules/**', | ||
'**/babel.config.js', | ||
'.yarn/**', | ||
], | ||
}; |