38 lines
935 B
JSON
38 lines
935 B
JSON
![]() |
{
|
||
|
// Use IntelliSense to learn about possible attributes.
|
||
|
// Hover to view descriptions of existing attributes.
|
||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
// Run all
|
||
|
"name": "Run all",
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"cwd": "${workspaceFolder}",
|
||
|
"runtimeExecutable": "npx",
|
||
|
"runtimeArgs": ["playwright", "test"],
|
||
|
"console": "integratedTerminal"
|
||
|
},
|
||
|
{
|
||
|
// Run Tests file Debug mode
|
||
|
"name": "DebugCurrent",
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"cwd": "${workspaceFolder}",
|
||
|
"runtimeExecutable": "npx",
|
||
|
"runtimeArgs": [
|
||
|
"playwright",
|
||
|
"test",
|
||
|
"${fileBasename}",
|
||
|
"--headed",
|
||
|
"--project=Desktop Chrome"
|
||
|
],
|
||
|
"env": {
|
||
|
"PWDEBUG": "1"
|
||
|
},
|
||
|
"console": "integratedTerminal"
|
||
|
}
|
||
|
]
|
||
|
}
|