node-query/node_modules/nodeunit/examples/browser/suite3.js

8 lines
173 B
JavaScript
Executable File

this.suite3 = {
'test for ie6,7,8': function (test) {
test.deepEqual(["test"], ["test"]);
test.notDeepEqual(["a"], ["b"]);
test.done();
}
};