Peter Halliday
Peter Halliday
I may have had a similar issue when trying to exclude urls for cloud functions that I have configured in firebase. It seems that the `excludes` option, excludes files if...
Just to add a new way to reproduce this (actually it's kind of the same). We have a set up where we have linked [Crowd](https://www.atlassian.com/software/crowd/overview) logins to gitlab. This results...
https://www.npmjs.com/package/grunt-continue may get you part of the way. It allows you to collect warnings and force grunt to continue until you want to handle the failures. However it also sounds...
It doesn't use pass through to the CLI, it loads the mocha library programatically. I haven't used it for a while but I think you had the configuration correct the...
I think this will require more investigation, but unfortunately I do not have the bandwidth available to look into this. The tests appear to still be passing, however Mocha has...
I don't know if you copy pasted or if this is a transcribing issue but ``` javascript require(../lib/jsfile.js) ``` should be ``` javascript require('../lib/jsfile.js') ``` note the quotes as the...
I don't think it would be related to `use strict`. And yes `html-cov` is no longer supported. I have been migrating everything to `istanbul` for coverage. At some point I'll...
I must admit I rarely use grunt anymore. So maintenance of this plug-in is not high on my list. If you have a pull request I can take a look...
Yes that's the purpose of the tunnel options. And yes it is necessary to run a server locally, if you're testing JS libraries for use in the browser then you...