Skip to content

Commit

Permalink
Fix chat composite snapshot (#5667)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leah-Xia-Microsoft authored Feb 26, 2025
1 parent 44e6e13 commit 26cea71
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ test.describe('JS Bundle Test', () => {

// Flakey test fix: wait for participant list to have finished loading
if (isBetaBuild) {
await page.waitForSelector('[data-ui-id=participant-item]');
const selector = '[data-ui-id="participant-item"]';
const component = page.locator(selector);
await component.waitFor({ state: 'visible' });
}

await page.addScriptTag({
Expand Down

0 comments on commit 26cea71

Please sign in to comment.