with the compose multiplatform UI testing, what ar...
# compose-desktop
c
with the compose multiplatform UI testing, what are the pre-requisites to having a UI test execute successfully? I tried running my UI tests in a docker container and I got native library resolution problems. Must X11 be available?
a
Make sure you have a
Copy code
implementation(compose.desktop.currentOs)
dependency
But also, yes, X11 should be available
xvfb should work
🙏 1