Skip to content
This repository has been archived by the owner on Feb 23, 2020. It is now read-only.

Commit

Permalink
Add the -sm=false flag to running client tests with coverage
Browse files Browse the repository at this point in the history
[This post](lathonez/clicker#262 (comment))
suggested that adding this flag would improve the usefulness of
stack traces from failed tests, and it did!
  • Loading branch information
NicMcPhee committed Feb 22, 2018
1 parent f48dddb commit a23dce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ task runClientTestsAndWatch(type: NpmTask) {
task runClientTestWithCoverage(type: Exec, dependsOn: yarn_install) {
group = 'application'
executable "ng"
args = ["test", "--watch=false", "--code-coverage"]
args = ["test", "-sm=false", "--watch=false", "--code-coverage"]
}

task runE2ETest(type:Exec){
Expand Down

0 comments on commit a23dce1

Please sign in to comment.