This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
node-task/node_modules/nodeunit/examples/browser/suite3.js
2014-09-18 15:35:58 -04:00

8 lines
173 B
JavaScript

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