launch.json 968 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "args": [
  9. "-u",
  10. "tdd",
  11. "--timeout",
  12. "999999",
  13. "--colors",
  14. "${workspaceFolder}/test"
  15. ],
  16. "internalConsoleOptions": "openOnSessionStart",
  17. "name": "Mocha Tests",
  18. "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
  19. "request": "launch",
  20. "skipFiles": [
  21. "<node_internals>/**"
  22. ],
  23. "type": "node"
  24. },
  25. {
  26. "name": "Launch Edge",
  27. "request": "launch",
  28. "type": "msedge",
  29. "url": "C:/Users/Иван/Desktop/orangutan/Save_Orangutan_Web/Project/web/index.html",
  30. "webRoot": "${workspaceFolder}"
  31. }
  32. ]
  33. }