Skip to content

Commit

Permalink
Update .vscode/launch.json settings (#9868)
Browse files Browse the repository at this point in the history
* Update .vscode/launch.json settings

* Update .vscode/launch.json

Co-authored-by: Michał Pierzchała <thymikee@gmail.com>
  • Loading branch information
Andarist and thymikee committed Apr 23, 2020
1 parent 1c2011d commit 70bf93c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@
{
"type": "node",
"request": "launch",
"name": "Debug Jest with current test file",
"program": "${workspaceFolder}/packages/jest-cli/bin/jest.js",
"args": ["--runInBand", "${file}"],
"runtimeArgs": ["-r", "flow-remove-types/register"]
"name": "Jest Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["${fileBasenameNoExtension}"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"windows": {
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
}
}
]
}

5 comments on commit 70bf93c

@Eunvaihfd
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Eunvaihfd
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Eunvaihfd
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Eunvaihfd
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Eunvaihfd
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.