san-cli-test是面向san-cli项目提供的一个mocha单元测试插件,它赋予了san-cli基于mocha进行单测的能力,解决了项目中.san文件无法进行单测的问题。
npm install san-cli-test
{
"scripts": {
"test": "san test"
}
}
Usage: san test [options] [...files]
Options:
--watch, -w run in watch mode
--grep, -g only run tests matching <pattern>
--slow, -s "slow" test threshold in milliseconds
--timeout, -t timeout threshold in milliseconds
--bail, -b bail after first test failure
--require, -r require the given module before running tests
--include include the given module into test bundle
默认匹配文件是:任何在test/
文件目录下,并且以.spec.js
结尾的文件
所有的 mochapack命令行参数也都是支持的。