Files
UXP-Fixed/testing/mochitest/tests/browser/browser_pass.js
T
2018-02-02 04:16:08 -05:00

14 lines
335 B
JavaScript

function test() {
SimpleTest.requestCompleteLog();
ok(true, "pass ok");
is(true, true, "pass is");
isnot(false, true, "pass isnot");
todo(false, "pass todo");
todo_is(false, true, "pass todo_is");
todo_isnot(true, true, "pass todo_isnot");
info("info message");
var func = is;
func(true, 1, "pass indirect is");
}