Last active
November 15, 2020 08:38
-
-
Save janbaer/2edf48f25f7b7002e3b3ff1fe4de7dcd to your computer and use it in GitHub Desktop.
Revisions
-
janbaer renamed this gist
Nov 15, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
janbaer revised this gist
Nov 15, 2020 . No changes.There are no files selected for viewing
-
janbaer created this gist
Nov 15, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ { "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Jest Current File", "program": "${workspaceFolder}/node_modules/jest/bin/jest.js", "cwd": "${workspaceFolder}", "args": [ "--config=${workspaceFolder}/jest.config.json", "--runInBand", "--no-cache", "--testPathPattern=${fileBasenameNoExtension}" ], "console": "internalConsole", "internalConsoleOptions": "neverOpen", "disableOptimisticBPs": true } ] }