From 67619364b957edcd6bbfd91d23f25ced9f24b023 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Fri, 19 Jul 2024 11:15:17 +0200 Subject: [PATCH] Use expectAutomationId() --- packages/server/src/api/routes/tests/rowAction.spec.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/server/src/api/routes/tests/rowAction.spec.ts b/packages/server/src/api/routes/tests/rowAction.spec.ts index f9e1c502f4..5e043cb42c 100644 --- a/packages/server/src/api/routes/tests/rowAction.spec.ts +++ b/packages/server/src/api/routes/tests/rowAction.spec.ts @@ -136,19 +136,19 @@ describe("/rowsActions", () => { name: rowActions[0].name, id: responses[0].id, tableId, - automationId: expect.any(String), + automationId: expectAutomationId(), }, [responses[1].id]: { name: rowActions[1].name, id: responses[1].id, tableId, - automationId: expect.any(String), + automationId: expectAutomationId(), }, [responses[2].id]: { name: rowActions[2].name, id: responses[2].id, tableId, - automationId: expect.any(String), + automationId: expectAutomationId(), }, }, }) @@ -191,7 +191,7 @@ describe("/rowsActions", () => { name: rowAction.name, id: res.id, tableId: tableId, - automationId: expect.any(String), + automationId: expectAutomationId(), }, }, })