Tibor Kotosz
Tibor Kotosz
I would love to see this feature introduced so just linking the related Gherkin issue and MR here so it easier to find it. Related Gherkin repo issue: https://github.com/Behat/Gherkin/issues/117 Related...
yep, I can get the "syntax" of the file which is something like `Packages/PHP/PHP.sublime-syntax`, then I can grab the last part and make it lowercase to result in `php` :joy:...
based on the VIM plugin I need to pass over language for these: goto_definition, goto_implementation, goto_type
I went with the easy approach and I just figure out the lang id from the current syntax configured for the file. https://github.com/tkotosz/sublime-phpactor-plugin/commit/fc00032bdda6c8eeda19658d69aadc83a569a3c4
Relevant part of the behat extension: https://github.com/phpactor/behat-extension/blob/master/lib/ReferenceFinder/StepDefinitionLocator.php#L40
You can use the 'all_scenarios' option of the screenshot_taking_mode config (see readme) to take combined screenshot of all scenarios regardless of failing or not. This is the only option currenly,...
@zkent when you are using built in steps then you can add a screenshot taking step right after the step which you would like to debug. You can define a...
I was thinking about this one today and this extension takes screenshots then using the configured image driver it saves the image somewhere (local file system or any remote location)....
@golddragon007 Your default mink driver is `goutte` and that driver doesn't support screenshot taking... when you use the `@javascript` tag then the `selenium2` is used which supports screenshot taking therefore...