fix(e2e): add e2e npm script for reusable workflow (PRI-700)

The plugin-e2e.yaml reusable workflow runs 'npm run e2e' to execute
Playwright tests. This script was missing from the kube-vip plugin.
This commit is contained in:
2026-05-05 13:49:56 +00:00
committed by Gandalf the Greybeard [agent]
parent 097ac48ecf
commit 87798ecbe1
+2 -1
View File
@@ -23,7 +23,8 @@
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"e2e": "playwright test"
},
"peerDependencies": {
"react": "^18.0.0",