Skip to content

Commit

Permalink
adjust coverage threashold for branches in @aws-cdk/aws-stepfunctions
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainMuller committed Jun 9, 2022
1 parent 89688da commit 7d1cd01
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/@aws-cdk/aws-stepfunctions/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
const baseConfig = require('@aws-cdk/cdk-build-tools/config/jest.config');
module.exports = baseConfig;
module.exports = {
...baseConfig,
coverageThreshold: {
...baseConfig.coverageThreshold,
global: {
...baseConfig.coverageThreshold.global,
branches: 77,
},
},
};

0 comments on commit 7d1cd01

Please sign in to comment.