fxa/.vscode/launch.json

34 строки
1010 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": [
{
"type": "pm2-node",
"request": "attach",
"name": "Attach via PM2",
"service": "${command:PickProcess}"
},
{
"type": "firefox",
"request": "attach",
"name": "Attach to Firefox"
},
{
"name": "Functional Tests",
"type": "node",
"protocol": "inspector",
"env": {
"DEBUG": "1",
"NODE_OPTIONS": "--dns-result-order=ipv4first",
},
"program": "${workspaceFolder}/node_modules/@playwright/test/cli.js",
"args": ["test","--config=${workspaceFolder}/packages/functional-tests/playwright.config.ts", "--project=local"],
"autoAttachChildProcesses": true,
"cwd":"${workspaceFolder}/packages/functional-tests",
"request": "launch",
}
]
}