Skip to content

Commit

Permalink
Fix test-coverage bug (#1765)
Browse files Browse the repository at this point in the history
* Fixed a bug in test-coverage single-file tests.

* Reverted unintended changes.
  • Loading branch information
dbemiller authored Oct 26, 2017
1 parent 6a0c5ca commit caec5c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ gulp.task('test', ['clean'], function (done) {

// If --file "<path-to-test-file>" is given, the task will only run tests in the specified file.
gulp.task('test-coverage', ['clean'], function(done) {
new KarmaServer(karmaConfMaker(true, false, argv.file), newKarmaCallback(done)).start();
new KarmaServer(karmaConfMaker(true, false, false, argv.file), newKarmaCallback(done)).start();
});

// View the code coverage report in the browser.
Expand Down

0 comments on commit caec5c0

Please sign in to comment.