Andrew

Results 12 comments of Andrew

This also seems to affect later versions of electron not just Chrome

Also experiencing this issue. Are these variable names actually invalid or will docker compose be updated to accomodate them? If docker compose is going to enforce this validation going forward...

@badeball - This is great work thanks for keeping it going. I have a question about the config upgrade. Previously steps in folders matching the feature file name would only...

I've manged to upgrade from 4.3.1 to 9.0.0 but having an issue with the ESBuild plugin. I get this error when i try to use it: `Transforming const to the...

> Hi, @andyg101 > > Notice the difference between the following two patterns > > ``` > cypress/integration/[filepath]/**/*.{js,ts} > ``` > > .. and > > ``` > cypress/integration/[filepath].{js,ts} >...

> > I'm not super familiar with esbuild. Have I missed some obvious configuration here? The only changes I made was to add this to my index.js > > Do...

Thanks. I'll give that a go. Help much appreciated @badeball Hmm. Now I get `node_modules/jju/lib/utils.js:1:18: ERROR: Could not resolve "fs"`

> I see `jju` there. That's a node module and won't work in the browser, browserify or not. Maybe browserify was able to shim out `fs` and you coincidentally avoided...

That worked @badeball. Thanks so much for the help! Also I got the glob matching working as per your suggestion too.

@hect1c I have the same set up as you I think and I found this works for common steps in cypress/integration/common ``` "cypress-cucumber-preprocessor": { "stepDefinitions": "cypress/integration/common/**/*.{js,ts}" } ```