diff --git a/packages/server/src/api/routes/tests/rowAction.spec.ts b/packages/server/src/api/routes/tests/rowAction.spec.ts index 98eb7f7699..efdfdd2392 100644 --- a/packages/server/src/api/routes/tests/rowAction.spec.ts +++ b/packages/server/src/api/routes/tests/rowAction.spec.ts @@ -355,6 +355,14 @@ describe("/rowsActions", () => { } ) }) + + it("does not throw with name conflicts for the same row action", async () => { + const action1 = await createRowAction(tableId, createRowActionRequest()) + + await config.api.rowAction.update(tableId, action1.id, { + name: action1.name, + }) + }) }) describe("delete", () => {