gecko/testing/mochitest/tests/browser/browser_pass.js

7 lines
136 B
JavaScript

function test() {
is(true, true, "pass is");
ok(true, "pass ok");
isnot(false, true, "pass isnot");
todo(false, "pass todo");
}