You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I came across this problem today. The problem comes from cypress-parallel/test-suites.js which imports glob using const glob = require('glob');.
There are two problems hidden behind this:
Since version 9, the glob function should be imported with const { glob } = require('glob');
The glob package is not given a version range in cypress-parallel, and it should be >=9 for this first change not to break other installations
Thanks
The text was updated successfully, but these errors were encountered:
I face the the same problem. I can't use "cypress-parallel" because of this.
Is there any workaround?
Update:
A (rather dirty) workaround for me that worked is installing old library version of glob in the project that consumes "cypress-parellal": npm install glob@^7.2.3 --save-dev
Hello, I came across this problem today. The problem comes from
cypress-parallel/test-suites.js
which importsglob
usingconst glob = require('glob');
.There are two problems hidden behind this:
const { glob } = require('glob');
glob
package is not given a version range incypress-parallel
, and it should be>=9
for this first change not to break other installationsThanks
The text was updated successfully, but these errors were encountered: