#3509592 Attempted fixes for test flake
3 unresolved threads
Merged
requested to merge issue/experience_builder-3509592:flakey-component-operations-test into 0.x
3 unresolved threads
Closes #3509592
Merge request reports
Activity
assigned to @jessebaker
60 61 // to an ever-increasing iFrame height! 61 62 const elements: NodeListOf<HTMLElement> = 62 63 iframeHTML.querySelectorAll('*'); 63 elements.forEach((element: HTMLElement) => { 64 if (element.style.height.endsWith('vh')) { 64 elements.forEach((element) => { 65 if ( 66 element instanceof HTMLElement && 67 element.style.height.endsWith('vh') 71 75 72 76 resizeIframe(); 73 77 } 78 }; 79 80 // Assign the load event listener 81 iframe.addEventListener('load', handleLoad); 82 83 // Check if the iFrame is already loaded 84 if (iframe.contentDocument?.readyState === 'complete') { 85 handleLoad(); Passed first time https://git.drupalcode.org/project/experience_builder/-/jobs/4513124 - re-running a few times to see if it was just a fluke
added 4 commits
-
f2555990...813b6fc8 - 3 commits from branch
project:0.x
- ddd175e0 - attempted fixes for test flake
-
f2555990...813b6fc8 - 3 commits from branch
Please register or sign in to reply