Skip to content

Commit

Permalink
Merge pull request #95 from adobe/replace-request
Browse files Browse the repository at this point in the history
refactor(monitoring): replace request with helix-fetch
  • Loading branch information
rofe committed Jul 2, 2020
2 parents a0044b4 + 380e25b commit 8145bf7
Show file tree
Hide file tree
Showing 10 changed files with 280 additions and 367 deletions.
18 changes: 9 additions & 9 deletions .vscode/launch.json
Expand Up @@ -8,13 +8,19 @@
"type": "node",
"request": "attach",
"name": "Attach",
"skipFiles": [
"<node_internals>/**"
],
"port": 9229
},
{
"type": "node",
"request": "launch",
"name": "Mocha All",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"skipFiles": [
"<node_internals>/**"
],
"args": [
"--timeout",
"999999",
Expand All @@ -29,6 +35,9 @@
"request": "launch",
"name": "Mocha Current File",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"skipFiles": [
"<node_internals>/**"
],
"args": [
"--timeout",
"999999",
Expand All @@ -37,15 +46,6 @@
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Launch 'hlx up'",
"program": "${workspaceFolder}/index.js",
"args":[
"up"
]
}
]
}

0 comments on commit 8145bf7

Please sign in to comment.