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
Ah no, the problem was that glob was not a dependency of @stryker-mutator/tap-runner. This meant another version of glob was required in the e2e test, which has a breaking change (promisified API). Adding a dependency on glob should fix this issue.
See test/e2e-tap branch: e2e/test/tap-old-version.
The text was updated successfully, but these errors were encountered:
nicojs
changed the title
File discovery of @stryker-mutator/tap-runner takes node_modules into account.
File discovery of @stryker-mutator/tap-runner requires globMay 24, 2023
Summary
The current default file globbing of the tap-runner takes a very long time when there is anode_modules
directory.There also seems to be a{
without a}
:-{**/@(test|tests|__test__|__tests__)/**,**/*.@(test|tests|spec)}.@(cjs|mjs|js|jsx|ts|tsx)
Ah no, the problem was that
glob
was not a dependency of@stryker-mutator/tap-runner
. This meant another version ofglob
was required in the e2e test, which has a breaking change (promisified API). Adding a dependency on glob should fix this issue.See
test/e2e-tap
branch:e2e/test/tap-old-version
.The text was updated successfully, but these errors were encountered: