mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-29 21:25:35 +00:00
28 lines
1.0 KiB
JavaScript
28 lines
1.0 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
setup({output:%(output)d});
|
|
|
|
add_completion_callback(function() {
|
|
add_completion_callback(function (tests, status) {
|
|
var subtest_results = tests.map(function(x) {
|
|
return [x.name, x.status, x.message, x.stack]
|
|
});
|
|
var id = location.pathname + location.search + location.hash;
|
|
var results = JSON.stringify([id,
|
|
status.status,
|
|
status.message,
|
|
status.stack,
|
|
subtest_results]);
|
|
(function done() {
|
|
if (window.__wd_results_callback__) {
|
|
clearTimeout(__wd_results_timer__);
|
|
__wd_results_callback__(results)
|
|
} else {
|
|
setTimeout(done, 20);
|
|
}
|
|
})()
|
|
})
|
|
});
|