We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b69fcc commit 6b64007Copy full SHA for 6b64007
package.json
@@ -53,7 +53,7 @@
53
"mocha": "^2.4.5",
54
"tslint": "^3.6.0",
55
"typescript": "^1.8.9",
56
- "vscode-debugadapter-testsupport": "^1.7.0"
+ "vscode-debugadapter-testsupport": "^1.8.0-pre.1"
57
},
58
"scripts": {
59
"postversion": "git push && git push --tags",
src/test/adapter.ts
@@ -14,6 +14,7 @@ describe('PHP Debug Adapter', () => {
14
15
beforeEach('start debug adapter', async () => {
16
client = new DebugClient('node', path.normalize(__dirname + '/../phpDebug'), 'php');
17
+ client.defaultTimeout = 10000;
18
await client.start(process.env.VSCODE_DEBUG_PORT && parseInt(process.env.VSCODE_DEBUG_PORT));
19
});
20
0 commit comments