cucumber-html-report-generator
Version:
Generate beautiful cucumberjs html reports for multiple instances (browsers / devices)
96 lines • 3.09 kB
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": [
{
"name": "update-report-resources script",
"type": "node",
"request": "launch",
"runtimeExecutable": "node",
"runtimeArgs": [
"--nolazy",
"-r",
"tsconfig-paths/register",
"-r",
"ts-node/register/transpile-only",
"-r",
"source-map-support/register"
],
"args": [
"./src/scripts/update-report-resources.ts"
],
"cwd": "${workspaceRoot}",
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": [
"<node_internals>/**",
"node_modules/**"
]
},
{
"name": "DebugMochaTestsOriginal",
"type": "node",
"request": "attach",
"port": 9229,
"protocol": "inspector",
"timeout": 30000,
"stopOnEntry": false
},
{
"args": [
"-u",
"tdd",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/test"
],
"internalConsoleOptions": "openOnSessionStart",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
{
"name": "Debug Mocha Tests",
"type": "pwa-node",
"request": "attach",
"port": 9229,
"continueOnAttach": true,
"autoAttachChildProcesses": false,
"resolveSourceMapLocations": [
"!**/node_modules/**",
"!**/.vscode/extensions/hbenl.vscode-mocha-test-adapter-*/**"
],
"skipFiles": [
"<node_internals>/**"
]
},
{
"name": "Launch webdriverio tests",
"type": "node",
"request": "launch",
"timeout": 60000,
"autoAttachChildProcesses": true,
"program": "${workspaceRoot}/node_modules/@wdio/cli/bin/wdio.js",
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"args": [
"${workspaceFolder}/test/e2e/configuration/local-conf.js",
"--spec",
"test/e2e/features/report-generation.feature",
"--browser=chrome",
"--debug",
"--maxInstances=1"
],
"skipFiles": [
"<node_internals>/**",
"node_modules/**"
],
}
]
}