Skip to content

Commit

Permalink
Fix coverge timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
mmanela committed Dec 14, 2016
1 parent 4195fe5 commit e11f907
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Chutzpah/Coverage/BlanketJsCoverageEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void PrepareTestHarnessForCoverage(TestHarness harness, IFrameworkDefinit
blanketMain.Attributes.Add("data-cover-flags", "ignoreError autoStart");
blanketMain.Attributes.Add("data-cover-only", dataCoverOnly);
blanketMain.Attributes.Add("data-cover-never", dataCoverNever);
blanketMain.Attributes.Add("timeout", testSettingsFile.CodeCoverageTimeout.HasValue ? testSettingsFile.CodeCoverageTimeout.Value.ToString() : "5000");
blanketMain.Attributes.Add("data-cover-timeout", testSettingsFile.CodeCoverageTimeout.HasValue ? testSettingsFile.CodeCoverageTimeout.Value.ToString() : "5000");
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion chutzpah.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>testing javascript tdd qunit jasmine mocha coffeescript typescript</tags>
<releaseNotes>
* Handle race condition when created the Kestrel webserver and retry
* Fix bug in coverage timeout setting
</releaseNotes>
</metadata>
</package>

0 comments on commit e11f907

Please sign in to comment.