Skip to content

Commit

Permalink
grammer fix in README.md
Browse files Browse the repository at this point in the history
super slight changes to wording in the code
  • Loading branch information
tteltrab committed Jun 11, 2015
1 parent ee8438e commit b95192c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ gulp.task('test', function (cb) {
.on('finish', function () {
gulp.src(['test/*.js'])
.pipe(mocha())
.pipe(istanbul.writeReports()) // Creating the reports after tests runned
.pipe(istanbul.writeReports()) // Creating the reports after tests ran
.pipe(istanbul.enforceThresholds({ thresholds: { global: 90 } })) // Enforce a coverage of at least 90%
.on('end', cb);
});
Expand All @@ -55,7 +55,7 @@ gulp.task('test', function (cb) {
.on('finish', function () {
gulp.src(['test/*.html'])
.pipe(testFramework())
.pipe(istanbul.writeReports()) // Creating the reports after tests runned
.pipe(istanbul.writeReports()) // Creating the reports after tests ran
.on('end', cb);
});
});
Expand Down Expand Up @@ -257,7 +257,7 @@ Minimum acceptable coverage thresholds. Any coverage values lower than the speci
Each threshold value can be:
- A positive number - used as a percentage
- A negative number - used as the maximum amount of coverage gaps
- A falsey value will skips the coverage
- A falsey value will skip the coverage

Thresholds can be specified across all files (`global`) or per file (`each`):
```
Expand Down

0 comments on commit b95192c

Please sign in to comment.