{
    // Use IntelliSense to learn about possible Node.js debug attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
    {
        "type": "node",
        "request": "launch",
        "name": "Mocha Tests",
        "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
        "args": [
            "-u",
            "tdd",
            "--timeout",
            "999999",
            "--colors",
            "--recursive",
            "${workspaceRoot}/lib-test/"
        ],
        "internalConsoleOptions": "openOnSessionStart"
    },
    {
      "type": "node",
      "request": "launch",
      "name": "Mocha Coffee Test Current File",
      "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
      "args": [
          "--compilers",
          "coffee:coffeescript/register",
          "--require",
          "coffeescript",
          "--recursive",
          "--colors",
          "${file}"
      ],
      "internalConsoleOptions": "openOnSessionStart"
    },
    {
        "type": "node",
        "request": "launch",
        "name": "Mocha Coffee Tests",
        "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
        "args": [
            "--compilers",
            "coffee:coffeescript/register",
            "--require",
            "coffeescript",
            "--recursive",
            "--colors",
            "${workspaceRoot}/test"
        ],
        "internalConsoleOptions": "openOnSessionStart"
    },
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "program": "${workspaceRoot}/lib/cql",
            "outFiles": [
                "${workspaceRoot}/out/**/*.js"
            ]
        }
    ]
}


// NODE_ENV=test ./node_modules/.bin/mocha --compilers coffee:coffeescript/register --require coffeescript --recursive --colors test/datatypes/datetime.coffee