Skip to content

Instantly share code, notes, and snippets.

@ruslanxdev
Created October 31, 2018 10:07
Show Gist options
  • Select an option

  • Save ruslanxdev/865dbd662c612066e6ef03934d72633e to your computer and use it in GitHub Desktop.

Select an option

Save ruslanxdev/865dbd662c612066e6ef03934d72633e to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Hermione – chrome-desktop",
"cwd": "${workspaceRoot}",
"program": "${cwd}/node_modules/.bin/hermione",
"args": [
"--inspect",
"--config",
"./hermione/.hermione-debug-chrome-desktop.conf.js",
"${relativeFile}",
"--browser",
"chrome-desktop",
"--play"
],
"console": "integratedTerminal",
"protocol": "auto",
"autoAttachChildProcesses": true,
"runtimeVersion": "8.12.0"
},
{
"type": "node",
"request": "launch",
"name": "Hermione – ie11",
"cwd": "${workspaceRoot}",
"program": "${cwd}/node_modules/.bin/hermione",
"args": [
"--inspect",
"--config",
"./hermione/.hermione-debug-ie11.conf.js",
"${relativeFile}",
"--browser",
"ie11",
"--play"
],
"console": "integratedTerminal",
"protocol": "auto",
"autoAttachChildProcesses": true,
"runtimeVersion": "8.12.0"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment