├── .gitignore ├── .npmignore ├── support ├── mocha.css └── mocha.js ├── test ├── common.js ├── index.html └── expect.js ├── Makefile ├── package.json ├── History.md ├── README.md └── expect.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | Makefile 4 | -------------------------------------------------------------------------------- /support/mocha.css: -------------------------------------------------------------------------------- 1 | ../node_modules/mocha/mocha.css -------------------------------------------------------------------------------- /support/mocha.js: -------------------------------------------------------------------------------- 1 | ../node_modules/mocha/mocha.js -------------------------------------------------------------------------------- /test/common.js: -------------------------------------------------------------------------------- 1 | 2 | /*! 3 | * Common test dependencies. 4 | */ 5 | 6 | // expose the globals that are obtained through ` 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 |