This commit is contained in:
Ramez Ragaa 2024-11-19 17:40:50 +02:00
Родитель 3eb75b1018
Коммит 191c15286d
1 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -154,7 +154,14 @@ namespace Microsoft/* UWP don't rename */.UI.Xaml.Tests.Common
return new RoutedEventTester<TEventArgs>(sender, eventName, action);
}
public TimeSpan DefaultTimeout = FeatureConfiguration.DebugOptions.WaitIndefinitelyInEventTester ? TimeSpan.FromMilliseconds(-1) : EventTesterConfig.Timeout;
public TimeSpan DefaultTimeout =
#if HAS_UNO
FeatureConfiguration.DebugOptions.WaitIndefinitelyInEventTester
#else
Debugger.IsAttached
#endif
? TimeSpan.FromMilliseconds(-1)
: EventTesterConfig.Timeout;
private TSender Sender
{