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

Commit

Permalink
Fix build with TS 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Dec 12, 2016
1 parent 884f900 commit b225437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/chromeDebugAdapter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ suite('ChromeDebugAdapter', () => {

mockChrome.Runtime
.setup(x => x.evaluate(It.isAny()))
.returns(() => Promise.resolve({ result: { value: '123' }}));
.returns(() => Promise.resolve<any>({ result: { type: 'string', value: '123' }}));

return chromeDebugAdapter.launch({ file: 'c:\\path with space\\index.html', runtimeArgs: ['abc', 'def'] })
.then(() => assert(spawnCalled));
Expand Down

0 comments on commit b225437

Please sign in to comment.