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

Commit

Permalink
Fix missing mock param in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
EricCornelson committed May 10, 2019
1 parent d5bcd1c commit be9cf7f
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 @@ -33,7 +33,7 @@ suite('ChromeDebugAdapter', () => {
mockery.enable({ useCleanCache: true, warnOnReplace: false, warnOnUnregistered: false });

// Create a ChromeConnection mock with .on and .attach. Tests can fire events via mockEventEmitter
mockChromeConnection = Mock.ofType(chromeConnection.ChromeConnection, MockBehavior.Strict, false, {events: {}}, { extensibilityPoints: {}});
mockChromeConnection = Mock.ofType(chromeConnection.ChromeConnection, MockBehavior.Strict, false, {events: {}}, {}, { extensibilityPoints: {}});
mockChrome = getMockChromeConnectionApi();
mockChromeDebugSession = Mock.ofType(MockChromeDebugSession, MockBehavior.Strict);
mockChromeDebugSession
Expand Down

0 comments on commit be9cf7f

Please sign in to comment.