launch.json 763 B

1234567891011121314151617181920212223242526272829
  1. {
  2. // Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
  3. // Pointez pour afficher la description des attributs existants.
  4. // Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "node",
  9. "request": "launch",
  10. "name": "Mocha Tests",
  11. "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
  12. "args": [
  13. "-u",
  14. "tdd",
  15. "--timeout",
  16. "999999",
  17. "--colors",
  18. "${workspaceFolder}/test/units"
  19. ],
  20. "internalConsoleOptions": "openOnSessionStart"
  21. },
  22. {
  23. "type": "node",
  24. "request": "launch",
  25. "name": "Lancer le programme",
  26. "program": "${workspaceFolder}/index.js"
  27. }
  28. ]
  29. }