Skip to content

Commit 5689cc7

Browse files
author
marker dao ®
committed
fix(matrix-test-helper.js): Reduce timeout
1 parent e2df008 commit 5689cc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/demos/utils/visual-tests/matrix-test-helper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const waitForAngularLoading = ClientFunction(() => new Promise((resolve)
4141
let demoAppCounter = 0;
4242
const demoAppIntervalHandle = setInterval(() => {
4343
const demoApp = document.querySelector('demo-app');
44-
if ((demoApp && demoApp.innerText !== 'Loading...') || demoAppCounter === 180) {
44+
if ((demoApp && demoApp.innerText !== 'Loading...') || demoAppCounter === 150) {
4545
setTimeout(resolve, 1000);
4646
clearInterval(demoAppIntervalHandle);
4747
}

0 commit comments

Comments
 (0)