Skip to content

Instantly share code, notes, and snippets.

@gpsarkar
Created May 14, 2022 08:54
Show Gist options
  • Select an option

  • Save gpsarkar/d3be9efbcc3b3224b8d3813cfbc6e944 to your computer and use it in GitHub Desktop.

Select an option

Save gpsarkar/d3be9efbcc3b3224b8d3813cfbc6e944 to your computer and use it in GitHub Desktop.

Revisions

  1. gpsarkar created this gist May 14, 2022.
    20 changes: 20 additions & 0 deletions launch.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    {
    "configurations": [
    {
    "args": [
    "${workspaceFolder}/spec/*.spec.js",
    "--require",
    "@babel/register"
    ],
    "internalConsoleOptions": "openOnSessionStart",
    "name": "Mocha Tests",
    "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
    "request": "launch",
    "skipFiles": [
    "<node_internals>/**"
    ],
    "type": "node",
    "cwd": "${workspaceFolder}",
    }
    ]
    }