mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
a2a195f2c4
Co-authored-by: Dan J Miller <danjm.com@gmail.com> Co-authored-by: Pedro Figueiredo <pedro.figueiredo@consensys.net> Co-authored-by: brad-decker <bhdecker84@gmail.com>
21 lines
645 B
JavaScript
21 lines
645 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: {
|
|
branches: 22,
|
|
functions: 33.5,
|
|
lines: 62.25,
|
|
statements: 41.75,
|
|
},
|
|
transforms: {
|
|
branches: 100,
|
|
functions: 100,
|
|
lines: 100,
|
|
statements: 100,
|
|
},
|
|
};
|