mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-21 17:37:01 +01:00
14efbf1eea
* Add ipfs gateway and collectible state to mock-state.json * Add collectible-default-image test with snapshot and testids * Add Collectible Details test, snapshot, and test-ids * Add Collectible Options tests and test-ids * Add Collectible Items test and test-ids. * Add more tests to Add Collectible component * Update Security Tab snapshot with ipfs gateway state value * Add data-testid to Menu component for menu background * Lint * Bump coverage targets * Remove commented import --------- Co-authored-by: David Walsh <davidwalsh83@gmail.com>
21 lines
644 B
JavaScript
21 lines
644 B
JavaScript
// Codecov uses a yaml file for its configuration and it targets line coverage.
|
|
// To keep our policy in place we have thile file separate from our
|
|
// codecov.yml file that specifies coverage targets for each project in the
|
|
// codecov.yml file. These targets are read by the test/merge-coverage.js
|
|
// script, and the paths from the codecov.yml file are used to figure out which
|
|
// subset of files to check against these targets.
|
|
module.exports = {
|
|
global: {
|
|
lines: 62.25,
|
|
branches: 50.5,
|
|
statements: 61.5,
|
|
functions: 55,
|
|
},
|
|
transforms: {
|
|
branches: 100,
|
|
functions: 100,
|
|
lines: 100,
|
|
statements: 100,
|
|
},
|
|
};
|