More tests

This commit is contained in:
Adria Navarro 2024-07-17 12:30:31 +02:00
parent 371a3ad8ec
commit 13c6ad9924
1 changed files with 8 additions and 0 deletions

View File

@ -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", () => {