Skip to content

Commit

Permalink
chore(deps-dev): [email protected] (#2979)
Browse files Browse the repository at this point in the history
- adjust test-runner glob to not be wrapped with quotes. these are only needed when running the command directly in the terminal, and wanting the terminal to not try and expand the * itself. it got broken with the new mocha.
- regenerate lock file

https://github.com/mochajs/mocha/releases/tag/v11.1.0
  • Loading branch information
AviVahl authored Jan 23, 2025
1 parent 97ca3ea commit 5244a95
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 121 deletions.
134 changes: 15 additions & 119 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"mocha": "^11.0.1",
"mocha": "^11.1.0",
"node-eval": "^2.0.0",
"playwright-chromium": "^1.49.1",
"playwright-core": "^1.49.1",
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,5 +140,5 @@ function stripStylablePrefix(scopeName) {
}

function createTestFilesGlob(packagesPattern) {
return `"./packages/${packagesPattern}/dist/test/**/*.spec.js"`;
return `./packages/${packagesPattern}/dist/test/**/*.spec.js`;
}

0 comments on commit 5244a95

Please sign in to comment.