I am writing some UITests
using the Xamarin.UITest
library. but every test I run always runs twice regardless of whether it has passed or failed?
My app configuration looks like this:
app = ConfigureApp.Android.ApkFile(PathToAPK).WaitTimes(new WaitTimes()).EnableLocalScreenshots().StartApp(Xamarin.UITest.Configuration.AppDataMode.DoNotClear);
and all my test classes are marked with the following attributes:
[TestFixture(Platform.Android)]
[TestFixture(Platform.iOS)]
I run the test on Android and it will run twice on Android regardless of whether it has passed or failed.
How do I stop this? / What is causing this?