alsatian-test/tap-bark

View on GitHub
.vscode/launch.json

Summary

Maintainability
Test Coverage
{
    // Use IntelliSense to find out which attributes exist for node debugging
    // Use hover for the description of the existing attributes
    // For further information visit https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Debug Unit Tests",
            "type": "node2",
            "request": "launch",
            "program": "${workspaceRoot}\\node_modules\\alsatian\\cli\\alsatian-cli.js",
            "cwd": "${workspaceRoot}",
            "args": ["./test/**/*.test.js"],
            "outFiles": [],
            "sourceMaps": true
        },
        {
            "name": "Launch Program",
            "type": "node2",
            "request": "launch",
            "program": "${workspaceRoot}\\src\\tap-bark.js",
            "cwd": "${workspaceRoot}",
            "outFiles": [],
            "sourceMaps": true
        },
        {
            "name": "Attach to Process",
            "type": "node2",
            "request": "attach",
            "port": 9229,
            "outFiles": [],
            "sourceMaps": true
        }
    ]
}