mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
13 lines
335 B
JavaScript
13 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");
|
|
}
|