Я хочу отладить мой модульный тест в vsCode, он был разрушен пряжей:
yarn test path
моя конфигурация vsCode:
{
"type": "node",
"request": "launch",
"name": "yarn test",
"runtimeExecutable": "yarn",
"runtimeArgs": [
"test",
],
"args": ["src/apps/trips/components/ChangePayoutModal/__test__/ChangePayoutModal.spec.js"],
"stopOnEntry": true,
"console": "integratedTerminal"
}
но я получилошибка:
$ node scripts/test.js --inspect-brk=31516 src/apps/trips/components/ChangePayoutModal/__test__/ChangePayoutModal.spec.js
● Unrecognized CLI Parameters:
Following options were not recognized:
["inspect-brk", "inspectBrk"]
CLI Options Documentation:
https://jestjs.io/docs/en/cli.html
vsCode добавить параметр inspect-brk
и не распознать его?как я должен сделать