mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
19 lines
344 B
JavaScript
19 lines
344 B
JavaScript
// Reimplementation of the LayoutTest API from Blink so we can easily port
|
|
// WebAudio tests to Simpletest, without touching the internals of the test.
|
|
|
|
function testFailed(msg) {
|
|
ok(false, msg);
|
|
}
|
|
|
|
function testPassed(msg) {
|
|
ok(true, msg);
|
|
}
|
|
|
|
function finishJSTest() {
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
function description(str) {
|
|
info(str);
|
|
}
|
|
|