mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
505f1f5445
* Token allowance unit tests Fix lint Fix test Fix token allowance unit tests Add txData in state for token allowance unit test Treshold bumped Run pipeline Treshold bumped Treshold bumped Treshold bumped * Update tests * Update tests
21 lines
642 B
JavaScript
21 lines
642 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: 63.5,
|
|
branches: 52,
|
|
statements: 62.75,
|
|
functions: 56,
|
|
},
|
|
transforms: {
|
|
branches: 100,
|
|
functions: 100,
|
|
lines: 100,
|
|
statements: 100,
|
|
},
|
|
};
|