Skip to content

Commit caff483

Browse files
committed
Update code coverage thresholds
1 parent e4fc1cc commit caff483

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Start server:
4444
```sh
4545
# set DEBUG env variable to get debug logs
4646
DEBUG=express-mongoose-es6-rest-api:* npm start
47-
OR
47+
# OR
4848
# requires gulp to be installed globally
4949
npm install -g gulp
5050
gulp serve

gulpfile.babel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const options = {
1717
codeCoverage: {
1818
reporters: ['lcov', 'text-summary'],
1919
thresholds: {
20-
global: { statements: 10, branches: 10, lines: 10, functions: 10 },
21-
each: { statements: 0, branches: 0, lines: 0, functions: 0 }
20+
global: { statements: 80, branches: 80, functions: 80, lines: 80 },
21+
each: { statements: 50, branches: 50, functions: 50, lines: 50 }
2222
}
2323
}
2424
};

0 commit comments

Comments
 (0)