使用浏览器打开index.html即可:
安装phantomjs和mocha-phantomjs(phantomjs模块更名为phantomjs-prebuilt):
sudo cnpm install -g phantomjs-prebuilt mocha-phantomjs
运行测试:
mocha-phantomjs --path /usr/local/bin/phantomjs ./test/index.html
测试add函数
✓ 1加1等于2
✓ 1加2等于3
2 passing (7ms)
因为package.json中配置npm的test脚本,因此可以直接使用npm test运行测试:
npm test