0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

adding mocha, getting npm test working

This commit is contained in:
Tim Griesser 2013-05-26 19:41:05 -04:00
parent 5b63fcf399
commit a3d2fb7aa9

View file

@ -4,7 +4,7 @@
"private": true, "private": true,
"scripts": { "scripts": {
"start": "node app", "start": "node app",
"test": "nodeunit core/test/ghost" "test": "mocha core/test/ghost"
}, },
"dependencies": { "dependencies": {
"express": "3.1.x", "express": "3.1.x",
@ -28,6 +28,7 @@
"grunt-mocha-test": "~0.4.0", "grunt-mocha-test": "~0.4.0",
"grunt-shell": "~0.2.2", "grunt-shell": "~0.2.2",
"grunt-contrib-sass": "~0.3.0", "grunt-contrib-sass": "~0.3.0",
"sinon": "~1.7.2" "sinon": "~1.7.2",
"mocha": "~1.10.0"
} }
} }