Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Debug CRA Tests",
  6. "type": "node",
  7. "request": "launch",
  8. "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/react-scripts",
  9. "args": [
  10. "test",
  11. "--runInBand",
  12. "--no-cache",
  13. "--env=jsdom",
  14. "--watchAll=false"
  15. ],
  16. "cwd": "${workspaceRoot}",
  17. "console": "integratedTerminal",
  18. "internalConsoleOptions": "neverOpen"
  19. }
  20. ]
  21. }