Skip to content

Commit 3a391de

Browse files
authored
fix: playground/boxes bootstrap clean issue (#16838)
Fixes #16565
2 parents f40f1cc + 8c79303 commit 3a391de

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

boxes/boxes/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"serve": "webpack serve --no-open --mode development --watch-files ./src/*",
1616
"formatting": "prettier --check ./src && eslint ./src",
1717
"formatting:fix": "prettier -w ./src",
18-
"test": "npx playwright test"
18+
"test": "playwright test"
1919
},
2020
"jest": {
2121
"preset": "ts-jest/presets/default-esm",

boxes/boxes/vite/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"prep": "yarn clean && yarn compile && yarn codegen",
1111
"build": "yarn prep && tsc -b && vite build",
1212
"serve": "vite",
13-
"test": "npx playwright test",
13+
"test": "playwright test",
1414
"formatting": "prettier --check ./src && eslint ./src",
1515
"formatting:fix": "prettier -w ./src",
1616
"preview": "vite preview"
@@ -27,6 +27,7 @@
2727
},
2828
"devDependencies": {
2929
"@eslint/js": "^9.13.0",
30+
"@playwright/test": "1.49.0",
3031
"@types/react": "^18.3.12",
3132
"@types/react-dom": "^18.3.1",
3233
"@vitejs/plugin-react-swc": "^3.7.2",

boxes/yarn.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3766,6 +3766,7 @@ __metadata:
37663766
"@aztec/stdlib": "npm:latest"
37673767
"@aztec/test-wallet": "npm:latest"
37683768
"@eslint/js": "npm:^9.13.0"
3769+
"@playwright/test": "npm:1.49.0"
37693770
"@types/react": "npm:^18.3.12"
37703771
"@types/react-dom": "npm:^18.3.1"
37713772
"@vitejs/plugin-react-swc": "npm:^3.7.2"

playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"preview": "vite preview",
1313
"formatting": "run -T prettier --check ./src && run -T eslint ./src",
1414
"formatting:fix": "run -T eslint --fix ./src && run -T prettier -w ./src",
15-
"test": "npx playwright test"
15+
"test": "playwright test"
1616
},
1717
"prettier": "@aztec/foundation/prettier",
1818
"dependencies": {

0 commit comments

Comments
 (0)