From 6ed9b6afcff0495a8a9238374347598124b0718f Mon Sep 17 00:00:00 2001 From: Jonathan Bennetts Date: Fri, 13 Dec 2024 21:00:12 +0000 Subject: [PATCH] fix test --- .../nodes/Hubspot/test/v1/GenericFunctions.test.ts | 14 -------------- .../nodes/Hubspot/test/v2/GenericFunctions.test.ts | 14 -------------- 2 files changed, 28 deletions(-) diff --git a/packages/nodes-base/nodes/Hubspot/test/v1/GenericFunctions.test.ts b/packages/nodes-base/nodes/Hubspot/test/v1/GenericFunctions.test.ts index 138e1ae410..e1841e503e 100644 --- a/packages/nodes-base/nodes/Hubspot/test/v1/GenericFunctions.test.ts +++ b/packages/nodes-base/nodes/Hubspot/test/v1/GenericFunctions.test.ts @@ -268,20 +268,6 @@ describe('Hubspot v1 - GenericFunctions', () => { }); }); - it('should return associations with some fields missing', () => { - const associations = { - companyIds: '1,2,3', - contactIds: '10,11,12', - }; - - const result = getAssociations(associations); - - expect(result).toEqual({ - companyIds: ['1', '2', '3'], - contactIds: ['10', '11', '12'], - }); - }); - it('should return associations with empty fields', () => { const associations = { companyIds: '', diff --git a/packages/nodes-base/nodes/Hubspot/test/v2/GenericFunctions.test.ts b/packages/nodes-base/nodes/Hubspot/test/v2/GenericFunctions.test.ts index 1b79f8bc8a..b8534df4e3 100644 --- a/packages/nodes-base/nodes/Hubspot/test/v2/GenericFunctions.test.ts +++ b/packages/nodes-base/nodes/Hubspot/test/v2/GenericFunctions.test.ts @@ -268,20 +268,6 @@ describe('Hubspot v2 - GenericFunctions', () => { }); }); - it('should return associations with some fields missing', () => { - const associations = { - companyIds: '1,2,3', - contactIds: '10,11,12', - }; - - const result = getAssociations(associations); - - expect(result).toEqual({ - companyIds: ['1', '2', '3'], - contactIds: ['10', '11', '12'], - }); - }); - it('should return associations with empty fields', () => { const associations = { companyIds: '',