Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node",
  6. "request": "launch",
  7. "name": "Unit Tests",
  8. "program": "${workspaceFolder}/node_modules/.bin/lab",
  9. "args": [
  10. "--timeout",
  11. "999999",
  12. "--colors",
  13. "${workspaceFolder}/test/unit",
  14. "--leaks"
  15. ],
  16. "console": "integratedTerminal",
  17. "internalConsoleOptions": "neverOpen"
  18. },
  19. {
  20. "type": "node",
  21. "request": "launch",
  22. "name": "Integration Tests",
  23. "program": "${workspaceFolder}/node_modules/.bin/lab",
  24. "args": [
  25. "--timeout",
  26. "3000",
  27. "--context-timeout",
  28. "7000",
  29. "--colors",
  30. "${workspaceFolder}/test/integration",
  31. "--leaks"
  32. ],
  33. "console": "integratedTerminal",
  34. "internalConsoleOptions": "neverOpen"
  35. },
  36. {
  37. "type": "node",
  38. "request": "launch",
  39. "name": "Debug current file",
  40. "program": "${workspaceFolder}/node_modules/.bin/lab",
  41. "args": [
  42. "${file}",
  43. "--timeout",
  44. "3000",
  45. "--context-timeout",
  46. "7000",
  47. "--colors",
  48. "--leaks"
  49. ],
  50. "console": "integratedTerminal",
  51. "internalConsoleOptions": "neverOpen"
  52. },
  53. {
  54. "type": "node",
  55. "request": "launch",
  56. "name": "Launch Program",
  57. "program": "${workspaceFolder}/index.js"
  58. }
  59. ]
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement