David Goss
David Goss
I would see this being more of an add-on than a core feature. @mattwynne was looking at something similar a while ago but with an Electron-based UI rather than an...
This is not something we'll have documentation for in cucumber-js - event just the React ecosystem has virtually infinite different combinations of structure and dependencies, all of which is a...
Step bodies can see `this.parameters`, but yeah `BeforeAll` is where you have a problem currently. I wouldn't be keen to have profiles (a means of managing configuration) accessible from steps...
Looking at the command ```shell cross-env PWDEBUG=1 DEBUG=pw:api cucumber-js --name Send a marketing gift-card ``` This could be picking up a global install if you have one. Can you run...
One more thing to check, can you do `npm why cucumber` to ensure you don't have the legacy cucumber package in there somehow? > If needed, I can provide a...
@m4rtelli thanks for reporting you have this issue too. Would you be able to run in your CI with [debug turned on](https://github.com/cucumber/cucumber-js/blob/main/docs/debugging.md) and see what's different in the debug output...
That's a reasonable point @m4rtelli. The check on `this.cwd` was a heuristic, since we expect it to be present in a correctly-running instance of Cucumber. This makes me think there...
Thanks again @m4rtelli In an effort to pin this down, I've created a repro project at https://github.com/davidjgoss/cucumber-js-2353-repro. This is the most basic example (pretty much per our readme) with debug...
As of 10.8.0, there is some additional logging when [running in debug mode](https://github.com/cucumber/cucumber-js/blob/main/docs/debugging.md) at the start of the run, which should look something like: ``` Running cucumber-js 10.8.0 Working directory:...
@gotvatter I think you have more of a WDIO issue there. But you can't have `cucumber` and `@cucumber/cucumber` coexisting in the same project because they'll both expect to own the...