jugglinmike
jugglinmike
@assaf The way I'm thinking of implementing it, that precaution wouldn't be necessary. Loading the module at the top level would function exactly the same as it does today: ```...
This was discussed in the issue referenced above, but my comment got a little buried. Here's the rationale: > It's true that the Servo project does not itself implement an...
This depends on gh-20.
I've found a solution that technically works, though it's guaranteed to make you cringe :P
One variation on [the workaround mentioned above](https://github.com/ansible/ansible/issues/15297#issuecomment-561587356) would be to allow passwordless `sudo` for anyone in that group, still limited to the `rsync` utility. If you're reading this issue, then...
Sure. Here's an example test for a "Todo list" application: ```js test.afterEach(t => { t.context._passed = true; }); test.afterEach.always(function(t) { if (t.context._passed) { return; } return t.context.driver.saveScreenshot(t.title); }); test('filtering', async...
> Would it help if the `--fail-fast` flag made AVA blow up the specific test > that failed with a thrown exception? The downside is that you'd only get one...
> Having the option will tempt people to enable it, even though they have no > use for it. Indeed we want to run all assertions and provide an log...
Another edge case: proper nouns ```js /** * This method is defined for backwards compatibility with pre-1.0 releases of * Cheerio. Please use [the `load` method exported by the module]{@link...