We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceeee92 commit 40cf2edCopy full SHA for 40cf2ed
src/table/__integ__/performance-marks.test.ts
@@ -18,7 +18,7 @@ function setupTest(
18
const page = new BasePageObject(browser);
19
await browser.url(`#/light/table/performance-marks${!inViewport ? '?outsideOfViewport=true' : ''}`);
20
const getMarks = async () => {
21
- await new Promise(r => setTimeout(r, 200));
+ await new Promise(r => setTimeout(r, 500));
22
const marks = await browser.execute(() => performance.getEntriesByType('mark') as PerformanceMark[]);
23
return marks.filter(m => m.detail?.source === 'awsui');
24
};
0 commit comments