grunt watch:如何在源代码中更改特定的jasmine规范文件

时间:2014-10-22 09:38:34

标签: javascript gruntjs jasmine grunt-contrib-watch

我可以配置grunt watch以在更改任何应用程序文件时运行所有规范文件。

 watch: {
            files: [ app_files, test_files],
            tasks: ['jasmine']
}

jasmine : {
            src : [...],
            options : {
                specs : ['specs/*.js'],
                vendor: [...]
            }
        }

如何配置grunt以便x.js中的更改将运行x-spec.js而不是更多,以便可以隔离错误?

0 个答案:

没有答案