mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
9 lines
221 B
JavaScript
9 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");
|
|
}
|