Skip to content

Commit 76c25c0

Browse files
committed
Merge branch 'main' into cs-7837-make-fitted-view-spec
2 parents db93ca2 + 800fbbc commit 76c25c0

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

packages/host/tests/acceptance/code-submode-test.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1865,6 +1865,9 @@ module('Acceptance | code submode tests', function (_hooks) {
18651865

18661866
await click('[data-test-select-card-type]');
18671867
await waitFor('[data-test-card-catalog-modal]');
1868+
await waitFor(
1869+
`[data-test-card-type-icon]`,
1870+
);
18681871
await percySnapshot(assert);
18691872
let cardCatalogModalOverlay = document.querySelector(
18701873
'[data-test-card-catalog-modal]',

packages/host/tests/acceptance/code-submode/create-file-test.gts

+1
Original file line numberDiff line numberDiff line change
@@ -855,6 +855,7 @@ export class FieldThatExtendsFromBigInt extends BigInteger {
855855
test<TestContextWithSave>('can create a new definition that extends card definition which uses default export', async function (assert) {
856856
assert.expect(1);
857857
await visitOperatorMode();
858+
await waitFor(`[data-test-card-type-icon]`);
858859
await openNewFileModal('Card Definition');
859860

860861
// select card type

packages/host/tests/acceptance/operator-mode-acceptance-test.gts

+3
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,9 @@ module('Acceptance | operator mode tests', function (hooks) {
544544
'the last known good state of the instance is displayed',
545545
);
546546

547+
await waitFor(
548+
`[data-cards-grid-item="${testRealmURL}person-entry"] [data-test-card-type-icon]`,
549+
);
547550
await percySnapshot(assert);
548551
await click(
549552
`[data-test-cards-grid-item="${testRealmURL}Person/fadhlan"]`,

0 commit comments

Comments
 (0)