tenfourfox/testing/mochitest/tests/browser/browser_pass.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07: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");
}