/* 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 test_results = tests.map(function(x) { return {name:x.name, status:x.status, message:x.message, stack:x.stack} }); var id = location.pathname + location.search + location.hash; var results = JSON.stringify({test: id, tests:test_results, status: status.status, message: status.message, stack: status.stack}); (function done() { if (window.__wd_results_callback__) { clearTimeout(__wd_results_timer__); __wd_results_callback__(results) } else { setTimeout(done, 20); } })() }) });