Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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: 3000, count: 2 });
await click(`[data-test-select="${testRealmURL}CatalogEntry/pet-room"]`);
assert
.dom(
Expand All @@ -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: 3000 });
assert
.dom(`[data-test-search-input] input`)
.hasNoValue('Card picker state is reset');
Expand Down