Each TestBench command for a Fusion app takes 20s with Flow 6 alpha 5
See original GitHub issueDescription of the bug / feature
The waiting logic in TestBench goes partly like
if (window.Vaadin.Flow && !window.Vaadin.Flow.clients) {
// Wait for the ApplicationConnection to show up
}
This no longer works at all in Fusion apps with Flow 6 alpha 5 because the application theme is set as
window.Vaadin.Flow._vaadintheme_something
apparently also the DevModeGizmo is set in dev mode as
window.Vaadin.Flow.devModeGizmo
The result is that each and every command in a test takes 20s, which is the timeout for waiting
Not sure if this should be fixed in Flow or TestBench
Issue Analytics
- State:
- Created 3 years ago
- Comments:11 (11 by maintainers)
Top Results From Across the Web
Each TestBench command for a Fusion app takes 20s with Flow 6 ...
Each TestBench command for a Fusion app takes 20s with Flow 6 alpha 5. ... The waiting logic in TestBench goes partly like...
Read more >Untitled
Work and income job seeker application, Galen o'shay wikipedia! Pizza zawonia, Let yourself go chords ... Simple pickup kong wiki, Atari flashback 5...
Read more >VHDL Vital Simulation Guide - Microsemi
VHDL language requires that the library names begin with an alpha ... 5. Compile the library. Type the following command at the prompt:....
Read more >arXiv:2104.03408v3 [hep-ex] 17 Aug 2021
In the calorimeter, both an electron and a photon leave similar patterns. 6. Page 7. Nanosecond ML event classification with BDT in FPGA...
Read more >Liquid surfaces for fusion plasma facing components—A ...
[14] on issues related to flowing Li divertor targets and their integration into NSTX-U; and (2) Tabarés et al. [15] on divertor application...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
There is no waiting for frontend compilation when you are running with
-Pproduction
. That happens before the server is started and the test is runRight, thanks. So there is no additional disclaimer that should be needed for testing Fusion apps for now.