Last active
August 29, 2015 14:02
-
-
Save kuronekomichael/af170d5621e26a46e7b6 to your computer and use it in GitHub Desktop.
mocha/chaiでテストを書くときにいつものセット(mocha.opts, _helper.js)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global.expect = require('chai').expect; | |
global.sinon = require('sinon').expect; | |
// clear console | |
process.stdout.write('\u001b[2J\u001b[0;0H'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--reporter spec | |
--require ./test/_helper.js | |
--timeout 10000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment