刚开始使用咕噜声,所以请不要马上投票。我已经生成了一个与Grunt合作的Yeoman角度应用程序。测试任务如下所示:
grunt.task.run([
'clean:server',
'env:all',
'injector:sass',
'concurrent:server',
'injector',
'wiredep',
'autoprefixer',
'express:dev',
'wait',
'open',
'test:client',
'watch'
]);
当我调用grunt test:client时,业力和量角器测试会运行。现在我希望在我提供应用程序时运行这些测试,我得到了:
Failed: Angular could not be found on the page http://localhost:9000/#/ : retries looking for angular exceeded
当我去咕噜叫'业力单位测试运行正常但是量角器没有运行产生这个错误:
{{1}}
所以它就像应用程序没有运行但我的猜测?在为您的应用提供服务时,是否可以将量角器集成到gruntFile中?或者我是否需要运行2个单独的进程,一个用于服务,另一个用于测试?