我有grunt-nodeunit任务与观察者和nodemon。因此,当我对文件进行任何更改时, grunt-nodeunit 和 nodemon 会同时开始工作。当 grunt-nodeunit 执行测试 nodemon 重启服务器时。所以我得到了一些假的失败测试。服务器重启后如何运行测试?
我的咕噜声配置:
grunt.initConfig({
nodeunit: {
all: ['./test.nodeunit/**/*.coffee']
},
watch: {
all: {
files: ['**/*.coffee', '**/*.jade'],
tasks: ['nodeunit']
}
}
});
在package.json
中配置了我的nodemon:
"start": "nodemon app.js"