Skip to content

Commit

Permalink
chore(internal): Update vscode shared launch options (#3089)
Browse files Browse the repository at this point in the history
  • Loading branch information
krystofwoldrich authored May 30, 2023
1 parent 34aba08 commit 7af4a5a
Showing 1 changed file with 12 additions and 44 deletions.
56 changes: 12 additions & 44 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,50 +2,18 @@
"version": "0.2.0",
"configurations": [
{
"name": "Attach to packager",
"cwd": "${workspaceFolder}",
"type": "reactnative",
"request": "attach"
},
{
"type": "node",
"request": "launch",
"name": "Debug e2e:android",
"cwd": "${workspaceFolder}/sample",
"program": "./node_modules/jest/bin/jest",
"args": [
"--runInBand",
"--config=./jest.config.js"
],
"env": {
"PLATFORM": "android"
},
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Debug e2e:ios",
"cwd": "${workspaceFolder}/sample",
"program": "./node_modules/jest/bin/jest",
"args": [
"--runInBand",
"--config=./jest.config.js"
],
"env": {
"PLATFORM": "ios"
},
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"name": "Debug Sample - iOS",
"cwd": "${workspaceFolder}",
"type": "reactnative",
"request": "launch",
"platform": "ios",
"isDynamic": true
"name": "Jest Tests",
"type": "node",
"request": "launch",
"runtimeArgs": ["--inspect-brk", "${workspaceRoot}/node_modules/jest/bin/jest.js"],
"args": ["--runInBand", "-t", ""],
"cwd": "${workspaceRoot}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"outputCapture": "std",
"sourceMaps": true,
"smartStep": true
},

]
}

0 comments on commit 7af4a5a

Please sign in to comment.