From 7e7b4a2488a96b55c503a2d0afe9acc2169a9365 Mon Sep 17 00:00:00 2001 From: beatz174-bit Date: Sun, 23 Nov 2025 13:24:28 +1000 Subject: [PATCH] Add Playwright launch configuration --- .vscode/launch.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index a9602c0..a6f0ff6 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,6 +14,13 @@ "request": "launch", "command": "npm run test", "cwd": "${workspaceFolder}" + }, + { + "name": "Playwright Tests", + "type": "node-terminal", + "request": "launch", + "command": "npm run test:e2e", + "cwd": "${workspaceFolder}" } ] }