From be9cf7fddcc936919a3cd297cb3587f459050944 Mon Sep 17 00:00:00 2001 From: Eric Cornelson Date: Fri, 10 May 2019 11:45:27 -0700 Subject: [PATCH] Fix missing mock param in unit test --- test/chromeDebugAdapter.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/chromeDebugAdapter.test.ts b/test/chromeDebugAdapter.test.ts index 828746b8..700b1de2 100644 --- a/test/chromeDebugAdapter.test.ts +++ b/test/chromeDebugAdapter.test.ts @@ -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