Skip to content

Commit 73795c5

Browse files
committed
test: more generous timeout when searching for packages
Searching for packages can take a long time.
1 parent 7b04edc commit 73795c5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/verify/check-blueprintWizard

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import testlib
88
@testlib.no_retry_when_changed
99
class TestBlueprintWizard(composerlib.ComposerCase):
1010

11+
@testlib.timeout("900")
1112
def testCreateAndDeleteBlueprint(self):
1213
b = self.browser
1314

@@ -24,7 +25,7 @@ class TestBlueprintWizard(composerlib.ComposerCase):
2425
# select openssh-server
2526
b.set_input_text("div[data-testid='search-available-pkgs-input'] input", "openssh-server")
2627
b.click("button[aria-label='Search button for available packages']")
27-
with b.wait_timeout(360):
28+
with b.wait_timeout(720):
2829
b.click("li[data-testid='openssh-server']")
2930
b.click("button[aria-label='Add selected']")
3031
# go to next page

0 commit comments

Comments
 (0)