Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
},

]
}