From f017f0d54e35035559e8d7adb8897eb5ff18f670 Mon Sep 17 00:00:00 2001 From: adrinr Date: Mon, 27 Feb 2023 17:41:42 +0100 Subject: [PATCH] Catch issue on test --- packages/server/src/integrations/tests/googlesheets.spec.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/server/src/integrations/tests/googlesheets.spec.ts b/packages/server/src/integrations/tests/googlesheets.spec.ts index 186388740a..1e28be33c6 100644 --- a/packages/server/src/integrations/tests/googlesheets.spec.ts +++ b/packages/server/src/integrations/tests/googlesheets.spec.ts @@ -113,6 +113,9 @@ describe("Google Sheets Integration", () => { "description", "location", ]) + + // No undefineds are sent + expect((sheet.setHeaderRow as any).mock.calls[0][0]).toHaveLength(3) }) }) })