From 410344865ce4ce43179513f3e2acf9132c8ec5db Mon Sep 17 00:00:00 2001 From: Laurent Nguyen Date: Mon, 13 May 2024 18:51:28 +0200 Subject: [PATCH] Fix linting errors --- .../Tabs/DocumentsTabV2/DocumentsTabV2Mongo.test.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2Mongo.test.tsx b/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2Mongo.test.tsx index 107407a8f..9fab859d2 100644 --- a/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2Mongo.test.tsx +++ b/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2Mongo.test.tsx @@ -100,19 +100,19 @@ describe("Documents tab (Mongo API)", () => { selectedSubnodeKind: undefined, children: undefined, isCollectionExpanded: undefined, - onDocumentDBDocumentsClick: function (): void { + onDocumentDBDocumentsClick: (): void => { throw new Error("Function not implemented."); }, - onNewQueryClick: function (source: any, event?: MouseEvent, queryText?: string): void { + onNewQueryClick: (): void => { throw new Error("Function not implemented."); }, - expandCollection: function (): void { + expandCollection: (): void => { throw new Error("Function not implemented."); }, - collapseCollection: function (): void { + collapseCollection: (): void => { throw new Error("Function not implemented."); }, - getDatabase: function (): ViewModels.Database { + getDatabase: (): ViewModels.Database => { throw new Error("Function not implemented."); }, nodeKind: "nodeKind",