Skip to content

Commit

Permalink
Added hit count breakpoints tests and breakpoints utility
Browse files Browse the repository at this point in the history
  • Loading branch information
D committed Apr 16, 2019
1 parent e108005 commit 7390889
Show file tree
Hide file tree
Showing 24 changed files with 2,519 additions and 1,669 deletions.
25 changes: 25 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,31 @@
"${workspaceFolder}/out/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "debug integration test",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"env": {
"MSFT_TEST_DA_PORT": "4712",
},
"args": [
"--require", "source-map-support/register",
"-u", "tdd",
"--timeout", "999999",
"--colors",
"--grep", "Hit count breakpoint = 3 pauses on the button's 3rd click",
"--reporter", "node_modules/vscode-chrome-debug-core-testsupport/out/loggingReporter.js",
"${workspaceFolder}/out/test/int/**/*.test.js",
],
"skipFiles": [
"<node_internals>/**",
"methodCalledLogger.ts"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
]
},
{
"name": "Run Extension",
"type": "extensionHost",
Expand Down
Loading

0 comments on commit 7390889

Please sign in to comment.