Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
Bump deps, fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Sep 28, 2017
1 parent f04ae1f commit 3cf41df
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 13 deletions.
18 changes: 17 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,27 @@
"-u", "tdd",
"--colors",
"out/test/**/*.test.js",
"--reporter", "node_modules/vscode-chrome-debug-core-testsupport/out/loggingReporter.js",
"--timeout", "1800000"
],
"outFiles": ["${workspaceRoot}/out/**/*.js"]
},
{
"type": "node",
"request": "launch",
"name": "intTest",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"sourceMaps": false,
"args": [
"-u", "tdd",
"--timeout", "999999",
"--colors",
"--reporter", "node_modules/vscode-chrome-debug-core-testsupport/out/loggingReporter.js",
"${workspaceFolder}/out/test/int/*.test.js"
],
"outFiles": [
"${workspaceRoot}/out/**/*.js"
]
},
{
"name": "Run Extension",
"type": "extensionHost",
Expand Down
12 changes: 6 additions & 6 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode-chrome-debug-core": "3.17.6",
"vscode-debugadapter": "^1.23.0"
"vscode-debugadapter": "^1.24.0"
},
"devDependencies": {
"@types/mocha": "^2.2.35",
Expand All @@ -42,9 +42,9 @@
"typemoq": "^0.3.3",
"typescript": "^2.4.1",
"vscode": "^1.0.3",
"vscode-chrome-debug-core-testsupport": "^3.16.0",
"vscode-debugadapter-testsupport": "1.23.0",
"vscode-debugprotocol": "^1.23.0",
"vscode-chrome-debug-core-testsupport": "^3.17.1",
"vscode-debugadapter-testsupport": "1.24.0",
"vscode-debugprotocol": "^1.24.0",
"webpack": "^2.2.0-rc.1",
"webpack-fail-plugin": "^1.0.5"
},
Expand Down
3 changes: 1 addition & 2 deletions test/int/breakpoints.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,9 @@ suite('Breakpoints', () => {
const bpCol1 = 19;
const correctBpCol1 = 16;
const expectedLocation = { path: scriptPath, line: bpLine, column: correctBpCol1 };
await dc.hitBreakpoint(
await dc.hitBreakpointUnverified(
{ url, webRoot: testProjectRoot },
{ path: scriptPath, line: bpLine, column: bpCol1 },
expectedLocation,
expectedLocation);
});
});
Expand Down

0 comments on commit 3cf41df

Please sign in to comment.