{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "args": [
        "-u",
        "bdd",
        "--timeout",
        "999999",
        "--colors",
        "${workspaceFolder}/tests/**/*.ts"
      ],
      "env": {
        "ANCHOR_PROVIDER_URL": "http://127.0.0.1:8899",
        "ANCHOR_WALLET": "/Users/nprince/.config/solana/id.json"
      },
      "internalConsoleOptions": "openOnSessionStart",
      "name": "Mocha Tests",
      "program": "${workspaceFolder}/node_modules/ts-mocha/bin/ts-mocha",
      "request": "launch",
      "skipFiles": ["<node_internals>/**"],
      "type": "pwa-node"
    },
    {
      "args": [
        "-u",
        "bdd",
        "--timeout",
        "999999",
        "--colors",
        "${workspaceFolder}/tests/spl-token-account-split.ts"
      ],
      "env": {
        "ANCHOR_PROVIDER_URL": "http://127.0.0.1:8899",
        "ANCHOR_WALLET": "/Users/nprince/.config/solana/id.json"
      },
      "internalConsoleOptions": "openOnSessionStart",
      "name": "Account Split Test",
      "program": "${workspaceFolder}/node_modules/ts-mocha/bin/ts-mocha",
      "request": "launch",
      "skipFiles": ["<node_internals>/**"],
      "type": "pwa-node"
    }
  ]
}
