mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-21 17:37:01 +01:00
4ee93f2594
* Removing invalid flags for yarn version command * Adding yarn version plugin * remove .yarn from coverage --------- Co-authored-by: Brad Decker <bhdecker84@gmail.com>
18 lines
509 B
JavaScript
18 lines
509 B
JavaScript
// 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/**',
|
|
],
|
|
};
|