Skip to content

Commit 2132ef4

Browse files
committed
try to fix e2e
1 parent b72b242 commit 2132ef4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

site/e2e/helpers.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -736,6 +736,10 @@ export const updateTemplateSettings = async (
736736
await expect(page).toHaveURL(`/templates/${templateName}/settings`);
737737

738738
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+
}
739743
const labelText = capitalize(key).replace("_", " ");
740744
await page.getByLabel(labelText, { exact: true }).fill(value);
741745
}

0 commit comments

Comments
 (0)