mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 17:33:08 +09:00
8 lines
221 B
JavaScript
8 lines
221 B
JavaScript
function test() {
|
|
ok(false, "fail ok");
|
|
is(true, false, "fail is");
|
|
isnot(true, true, "fail isnot");
|
|
todo(true, "fail todo");
|
|
todo_is(true, true, "fail todo_is");
|
|
todo_isnot(true, false, "fail todo_isnot");
|
|
}
|