File: suite3.js

package info (click to toggle)
node-nodeunit 0.11.2%2Bds3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,044 kB
  • sloc: makefile: 154; sh: 2
file content (7 lines) | stat: -rw-r--r-- 173 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
this.suite3 = {
    'test for ie6,7,8': function (test) {
        test.deepEqual(["test"], ["test"]);
        test.notDeepEqual(["a"], ["b"]);
        test.done();
    }
};