Skip to content

Commit

Permalink
fix(test): ensure screenshot dir is cleaned up (#5421)
Browse files Browse the repository at this point in the history
* fix(test): ensure screenshot dir is cleaned up

STENCIL-1095

* force rm call
  • Loading branch information
christian-bromann committed Mar 6, 2024
1 parent 940a101 commit 15e7a49
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@
"build": "npm run clean && npm run tsc.scripts && npm run tsc.prod && node scripts/build/esbuild/build.js --prod --ci",
"build.watch": "npm run build -- --watch",
"build.updateSelectorEngine": "node scripts/build/updateSelectorEngine.js",
"clean": "rm -rf build/ cli/ compiler/ dev-server/ internal/ mock-doc/ sys/ testing/ && npm run clean-scripts",
"clean-scripts": "rm -rf scripts/build",
"clean": "rm -rf build/ cli/ compiler/ dev-server/ internal/ mock-doc/ sys/ testing/ && npm run clean.scripts && npm run clean.screenshots",
"clean.scripts": "rm -rf scripts/build",
"clean.screenshots": "rm -rf test/end-to-end/screenshot/builds test/end-to-end/screenshot/images",
"lint": "eslint 'bin/*' 'scripts/*.ts' 'scripts/**/*.ts' 'src/*.ts' 'src/**/*.ts' 'src/**/*.tsx'",
"install.jest": "bash ./src/testing/jest/install-dependencies.sh",
"prettier": "npm run prettier.base -- --write",
Expand Down

0 comments on commit 15e7a49

Please sign in to comment.