We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b72b242 commit 2132ef4Copy full SHA for 2132ef4
site/e2e/helpers.ts
@@ -736,6 +736,10 @@ export const updateTemplateSettings = async (
736
await expect(page).toHaveURL(`/templates/${templateName}/settings`);
737
738
for (const [key, value] of Object.entries(templateSettingValues)) {
739
+ // Skip max_port_share_level for now since the frontend is not yet able to handle it
740
+ if (key === "max_port_share_level") {
741
+ continue
742
+ }
743
const labelText = capitalize(key).replace("_", " ");
744
await page.getByLabel(labelText, { exact: true }).fill(value);
745
}
0 commit comments