Skip to content

Commit 0e20035

Browse files
committed
Revert "Fix selectors for previously-attached messages"
This reverts commit 6c14b2f.
1 parent 6c14b2f commit 0e20035

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/matrix/helpers/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ export async function assertMessages(
388388
).toHaveCount(1);
389389
await expect(
390390
page.locator(
391-
`[data-test-message-idx="${index}"] [data-test-selected-card]`,
391+
`[data-test-message-idx="${index}"] [data-test-message-card]`,
392392
),
393393
).toHaveCount(cards.length);
394394
cards.map(async (card) => {
@@ -401,7 +401,7 @@ export async function assertMessages(
401401
// note: attached cards are in atom format (which display the title by default)
402402
await expect(
403403
page.locator(
404-
`[data-test-message-idx="${index}"] [data-test-selected-card="${card.id}"]`,
404+
`[data-test-message-idx="${index}"] [data-test-message-card="${card.id}"]`,
405405
),
406406
).toContainText(card.title);
407407
}

0 commit comments

Comments
 (0)