mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
function test() {
|
|
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, true, "pass indirect is");
|
|
}
|