From 995e2bf8aa4ca890de7562d70fd25c4f0c615f4c Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Wed, 20 Sep 2023 22:33:30 -0500 Subject: [PATCH 1/3] host: Add to timeout for unreliable test --- .../host/tests/integration/components/operator-mode-test.gts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/host/tests/integration/components/operator-mode-test.gts b/packages/host/tests/integration/components/operator-mode-test.gts index 58f75af10dc..0fdbda3b25c 100644 --- a/packages/host/tests/integration/components/operator-mode-test.gts +++ b/packages/host/tests/integration/components/operator-mode-test.gts @@ -2019,7 +2019,7 @@ module('Integration | operator-mode', function (hooks) { await fillIn(`[data-test-search-input] input`, `pet`); assert.dom(`[data-test-search-input] input`).hasValue('pet'); - await waitFor('[data-test-card-catalog-item]', { count: 2 }); + await waitFor('[data-test-card-catalog-item]', { timeout: 2000, count: 2 }); await click(`[data-test-select="${testRealmURL}CatalogEntry/pet-room"]`); assert .dom( @@ -2036,7 +2036,7 @@ module('Integration | operator-mode', function (hooks) { .doesNotExist('no cards are added'); await click(`[data-test-create-new-card-button]`); - await waitFor('[data-test-card-catalog-item]'); + await waitFor('[data-test-card-catalog-item]', { timeout: 2000 }); assert .dom(`[data-test-search-input] input`) .hasNoValue('Card picker state is reset'); From d4bf6821bb0a3d1088156cfb452fe98ceae1caad Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Wed, 20 Sep 2023 22:48:34 -0500 Subject: [PATCH 2/3] Add more to timeouts! --- .../host/tests/integration/components/operator-mode-test.gts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/host/tests/integration/components/operator-mode-test.gts b/packages/host/tests/integration/components/operator-mode-test.gts index 0fdbda3b25c..73383d25a71 100644 --- a/packages/host/tests/integration/components/operator-mode-test.gts +++ b/packages/host/tests/integration/components/operator-mode-test.gts @@ -2019,7 +2019,7 @@ module('Integration | operator-mode', function (hooks) { await fillIn(`[data-test-search-input] input`, `pet`); assert.dom(`[data-test-search-input] input`).hasValue('pet'); - await waitFor('[data-test-card-catalog-item]', { timeout: 2000, count: 2 }); + await waitFor('[data-test-card-catalog-item]', { timeout: 3000, count: 2 }); await click(`[data-test-select="${testRealmURL}CatalogEntry/pet-room"]`); assert .dom( @@ -2036,7 +2036,7 @@ module('Integration | operator-mode', function (hooks) { .doesNotExist('no cards are added'); await click(`[data-test-create-new-card-button]`); - await waitFor('[data-test-card-catalog-item]', { timeout: 2000 }); + await waitFor('[data-test-card-catalog-item]', { timeout: 3000 }); assert .dom(`[data-test-search-input] input`) .hasNoValue('Card picker state is reset'); From 88312316aff9ff5719a2e8cf75cfebdc5afe483b Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Wed, 20 Sep 2023 23:09:10 -0500 Subject: [PATCH 3/3] Add empty commit