diff --git a/Assets/Tests/Raindrop/RaindropFullIntegrationTests/LoginTests.cs b/Assets/Tests/Raindrop/RaindropFullIntegrationTests/LoginTests.cs index d87a383..9f7c362 100644 --- a/Assets/Tests/Raindrop/RaindropFullIntegrationTests/LoginTests.cs +++ b/Assets/Tests/Raindrop/RaindropFullIntegrationTests/LoginTests.cs @@ -41,6 +41,17 @@ namespace Raindrop.Tests.RaindropFullIntegrationTests public IEnumerator LoadScene_MainScene_IsOK() { yield return new WaitForSeconds(10); + Assert.True(UnityMainThreadDispatcher.Exists()); + Assert.Pass(); + yield break; + } + + [UnityTest] + //Added due to MT Dispatcher being unstable across scene boots. + public IEnumerator LoadScene_MainScene_IsOK_MTDispatcher() + { + yield return new WaitForSeconds(10); + Assert.True(UnityMainThreadDispatcher.Exists()); Assert.Pass(); yield break; }