-
Notifications
You must be signed in to change notification settings - Fork 782
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build: Update browserstack-runner to fix
QUnit.todo
support
It is hard to believe, but we actually never had a `QUnit.todo()` test as part of the main index.html test suite that we run in browsers. There were secondary tests that only run in Headless Chromium via grunt-contrib-qunit, and CLI tests, but none that we run cross browser. In commit 47576c1 I added test/main/each.js to index.html, not realizing it was the first such case, and this broke the CI build for all browsers. * js-reporters 2.1 adds support for QUnit.todo in the adapter so that it correctly emits the `runEnd` event to count these toward `testCounts.todo` instead of toward `testCounts.failed`. qunitjs/js-reporters#140. * browserstack-runner 0.9.5-qunitjs.1 updates its copy of js-reporters to this version, and also updates its error formatter to not print details for error objects from non-failed tests. Fixes #1622.
- Loading branch information
Showing
5 changed files
with
39 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"test_framework": "qunit", | ||
"test_path": ["test/index.html"], | ||
"test_server_port": "8899", | ||
"exit_with_fail": true, | ||
"timeout": 600, | ||
"browsers": [ | ||
"firefox_current", | ||
"chrome_current" | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters