launch.json 502 B

12345678910111213141516171819
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Run Tests",
  6. "type": "node",
  7. "request": "launch",
  8. "program": "${workspaceFolder}/node_modules/@playwright/test/playwright-test.js",
  9. "args": ["test/kredit/**/*.test.js"],
  10. "console": "integratedTerminal",
  11. "internalConsoleOptions": "neverOpen",
  12. "sourceMaps": true,
  13. "cwd": "${workspaceFolder}",
  14. "env": {
  15. "NODE_ENV": "test"
  16. }
  17. }
  18. ]
  19. }