Files
stockfill/.vscode/launch.json
T
beatzaplenty ca51bab86b modified: .codex_playwright_version
modified:   .vscode/launch.json
	modified:   package-lock.json
	modified:   package.json
	modified:   src/components/AddProductDialog.tsx
	new file:   src/screens/ActivePickListScreen.additional.test.tsx
	new file:   src/screens/ManageProductsScreen.additional.test.tsx
	modified:   src/screens/ManageProductsScreen.test.tsx
2025-12-01 18:33:08 +10:00

44 lines
1.0 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Vite Dev Server",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev",
"cwd": "${workspaceFolder}"
},
{
"name": "Launch Preview (Test) Server",
"type": "node-terminal",
"request": "launch",
"command": "npm run test",
"cwd": "${workspaceFolder}"
},
{
"name": "Playwright Tests",
"type": "node-terminal",
"request": "launch",
"command": "npm run test:e2e",
"cwd": "${workspaceFolder}",
"env": {
"CHROME_PATH": "<path to flatpak chrome wrapper>"
}
},
{
"name": "Unit Test Coverage",
"type": "node-terminal",
"request": "launch",
"command": "npm run test:coverage",
"cwd": "${workspaceFolder}"
},
{
"name": "Lint and Build",
"type": "node-terminal",
"request": "launch",
"command": "npx tsc -noEmit && npm run build",
"cwd": "${workspaceFolder}"
}
]
}