diff --git a/src/TestUtils/src/Microsoft.Maui.IntegrationTests/Apple/Simulator.cs b/src/TestUtils/src/Microsoft.Maui.IntegrationTests/Apple/Simulator.cs index 837f4e366891..30abd07e0a31 100644 --- a/src/TestUtils/src/Microsoft.Maui.IntegrationTests/Apple/Simulator.cs +++ b/src/TestUtils/src/Microsoft.Maui.IntegrationTests/Apple/Simulator.cs @@ -39,6 +39,9 @@ bool WaitForSimulatorReady(int timeoutInSeconds = 60) if (exitCode == 0) return true; + // Print diagnostic output to help troubleshoot boot issues + TestContext.WriteLine($"Simulator not ready yet: {output}"); + // Wait a bit before checking again System.Threading.Thread.Sleep(2000); }