mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
e77e20d8c4
* Add Bridge button * Add newline to the end of bridge svg * Move Portfolio button * Vertically center Portfolio button * Use IconButton for Portfolio button * Change portfolio button size * Lowering coverage to get this in for release by a very small amount * Add unit tests for Portfolio button --------- Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
21 lines
649 B
JavaScript
21 lines
649 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: 64.39,
|
|
branches: 53.01,
|
|
statements: 63.63,
|
|
functions: 56.67,
|
|
},
|
|
transforms: {
|
|
branches: 100,
|
|
functions: 100,
|
|
lines: 100,
|
|
statements: 100,
|
|
},
|
|
};
|