Skip to content

Commit eec55bd

Browse files
committed
chore: revert several test changes
1 parent 72b4560 commit eec55bd

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

typescript-sdk/apps/dojo/e2e/test-isolation-helper.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,9 @@ export async function waitForAIResponse(page: Page, timeout: number = 90000) {
2323
await page.waitForFunction(
2424
() => {
2525
// Look for common AI loading indicators
26-
const loadingIndicators = [
27-
...document.querySelectorAll(
26+
const loadingIndicators = document.querySelectorAll(
2827
'[data-testid*="loading"], .loading, .spinner'
29-
),
30-
...document.querySelectorAll('.copilotKitActivityDot')
31-
];
28+
);
3229
return loadingIndicators.length === 0;
3330
},
3431
{ timeout }

0 commit comments

Comments
 (0)