{
  "version": "0.2.0",
  "configurations": [{
    "name": "All Unit Tests - Jest",
    "type": "node",
    "request": "launch",
    "program": "${workspaceFolder}/node_modules/jest/bin/jest",
    "args": [
      "--runInBand"
    ],
    "cwd": "${workspaceFolder}",
    "env": {
      "MATCH_ENV": "spec"
    }
  },
  {
    "name": "Current Unit Tests - Jest",
    "type": "node",
    "request": "launch",
    "program": "${workspaceFolder}/node_modules/jest/bin/jest",
    "args": [
      "${relativeFile}"
    ],
    "cwd": "${workspaceFolder}",
    "env": {
      "MATCH_ENV": "spec"
    }
  },
  {
    "name": "All E2E Tests - Jest",
    "type": "node",
    "request": "launch",
    "program": "${workspaceFolder}/node_modules/jest/bin/jest",
    "args": [
      "--runInBand"
    ],
    "cwd": "${workspaceFolder}",
    "env": {
      "MATCH_ENV": "e2e"
    }
  },
  {
    "name": "Current E2E Tests - Jest",
    "type": "node",
    "request": "launch",
    "program": "${workspaceFolder}/node_modules/jest/bin/jest",
    "args": [
      "${relativeFile}"
    ],
    "cwd": "${workspaceFolder}",
    "env": {
      "MATCH_ENV": "e2e"
    }
  }]
}
