gavin%gavinsharp.com 0b1735dc51 Bug 387895: add sample tests for the browser-chrome framework, r=robcee
git-svn-id: svn://10.0.0.236/trunk@229814 18797224-902f-48f8-a5cc-f745e15eee43
2007-07-12 15:43:08 +00:00

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");
}