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

8 lines
173 B
JavaScript
Raw Normal View History

2014-10-20 16:56:45 -04:00
this.suite3 = {
'test for ie6,7,8': function (test) {
test.deepEqual(["test"], ["test"]);
test.notDeepEqual(["a"], ["b"]);
test.done();
}
};