Skip to content

Commit 09fa65b

Browse files
committed
Add npm run instructions for tests using webdriverio or playwright
1 parent 1f346a2 commit 09fa65b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,13 @@
5656
"start:example:server:jdtls": "npm run start:server:jdtls --workspace packages/examples",
5757
"release:prepare": "npm run reset:repo && npm ci && npm run build && npm run lint && npm run test:run",
5858
"reset:repo": "git clean -f -X -d",
59-
"test": "vitest",
60-
"test:run": "vitest --run",
61-
"test:debug": "vitest --config vitest.debug.config.ts --inspect-brk=20222 --browser --no-file-parallelism",
59+
"test": "npm run test:webdriverio",
60+
"test:run": "npm run test:webdriverio",
61+
"test:webdriverio": "vitest",
62+
"test:webdriverio:run": "vitest --run",
63+
"test:playwright": "vitest --config vitest.debug.config.ts",
64+
"test:playwright:run": "vitest --config vitest.debug.config.ts --run",
65+
"test:debug": "npm run test:playwright -- --inspect-brk=20222 --browser --no-file-parallelism",
6266
"test:install": "playwright install"
6367
},
6468
"workspaces": [

0 commit comments

Comments
 (0)