(page: Page, name: RegExp)
| 1108 | }; |
| 1109 | |
| 1110 | const clickWorkspaceUpdateSubmit = async (page: Page, name: RegExp) => { |
| 1111 | const submitButton = page.getByRole("button", { name }); |
| 1112 | await expect(submitButton).toBeEnabled({ timeout: 30_000 }); |
| 1113 | await submitButton.click(); |
| 1114 | }; |
| 1115 | |
| 1116 | export const updateTemplate = async ( |
| 1117 | page: Page, |
no outgoing calls
no test coverage detected