File tree 2 files changed +19
-4
lines changed
2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 8
8
9
9
"url" : " http://testdouble.com"
10
10
},
11
+ "config" : {
12
+ "mocha_reporter" : " spec"
13
+ },
11
14
"scripts" : {
12
- "test" : " mocha --ui mocha-gwt --recursive --require coffee-script --compilers coffee:coffee-script/register 'test/helper.coffee' 'test/'" ,
13
- "test-debug" : " mocha --debug-brk --ui mocha-gwt --recursive --require coffee-script --compilers coffee:coffee-script/register 'test/helper.coffee' 'test/'" ,
15
+ "start" : " testem" ,
16
+ "test" : " mocha -u mocha-gwt -R $npm_package_config_mocha_reporter --compilers coffee:coffee-script --recursive test/helper.coffee test/" ,
17
+ "test:debug" : " npm test -- --debug-brk" ,
14
18
"preversion" : " git pull --rebase && npm test" ,
15
19
"postversion" : " git push && git push --tags && npm publish"
16
20
},
20
24
},
21
25
"devDependencies" : {
22
26
"chai" : " ^3.2.0" ,
23
- "grunt" : " ~0.4.2" ,
24
27
"mocha" : " ^2.3.1" ,
25
28
"mocha-gwt" : " ^0.2.0" ,
26
- "testem" : " ~0.6.15 "
29
+ "testem" : " ^0.9.4 "
27
30
},
28
31
"keywords" : [
29
32
" tdd" ,
Original file line number Diff line number Diff line change
1
+ var pkg = require ( './package.json' ) ;
2
+
3
+ module . exports = {
4
+ launch_in_dev : [ 'node' ] ,
5
+
6
+ launchers : {
7
+ node : {
8
+ command : 'npm test --testdouble:mocha_reporter=tap' ,
9
+ protocol : 'tap'
10
+ }
11
+ }
12
+ } ;
You can’t perform that action at this time.
0 commit comments