Antoine Goutenoir

Results 171 comments of Antoine Goutenoir

Right now, both Features and Scenarios are run synchronously, as far as I can see. See https://api.dartlang.org/apidocs/channels/stable/dartdoc-viewer/dart-async.Future#id_forEach

We could always shuffle the hell out of the order, though.

The fix is easy : just remove the `return` statement, see what happens ;)

The problem with parallel runs is the lack of context-lock.

Well, is the stepdefs context (user-defined) copied to each isolate ? (i don't grok isolates yet) Wouldn't the slow scenario fail ? ``` gherkin Background: Given I have a background...

Tags/Releases are pretty useful for dependency managers. `Composer` uses them, not sure if `pub` does. (but hey, it should) Might not hurt to wait for all bug to be solved,...

To stylize (colorize), a few choices are available : - dirty `style` attribute for each tag - use css `class`es, and - a css file for the user to embed...

Are you more 80 or 120 ? What will happen to tabulations ? I use both, it depends on the project. For a cli runner, 80 makes more sense. ```...

Right now, I get `IsolateSpawnException: 'spawnFunction is not supported from a dom-enabled isolate. Please use spawnUri instead.'` when I handle a `GherkinParserTask` with a `Worker`.

This is linked to the first issue of Worker : https://github.com/Dreckr/Worker/issues/1