unexpected-set
Version:
Add support to Unexpected for testing Set instances
20 lines (19 loc) • 600 B
JSON
{
// 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": [
{
"protocol": "inspector",
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": [
"<node_internals>/**" // Prevent stepping through async_hooks.js et al.
]
}
]
}