File tree 2 files changed +17
-7
lines changed
2 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 9
9
and fixtures to enable using it within xUnit.
10
10
</Description >
11
11
<PackageIcon >icon.png</PackageIcon >
12
- <TargetFramework >net8.0</ TargetFramework >
12
+ <TargetFrameworks >net8.0;net462</ TargetFrameworks >
13
13
<PublishRepositoryUrl >true</PublishRepositoryUrl >
14
14
<RunWithWarnings >true</RunWithWarnings >
15
15
<RootNamespace >Microsoft.Playwright.Xunit</RootNamespace >
Original file line number Diff line number Diff line change 34
34
35
35
namespace Microsoft . Playwright . Xunit ;
36
36
37
- public class WorkerAwareTest : ExceptionCapturer , IAsyncLifetime
37
+ public class WorkerAwareTest : ExceptionCapturer
38
38
{
39
39
private static readonly ConcurrentStack < Worker > _allWorkers = new ( ) ;
40
- private Worker ? _currentWorker = null ! ;
40
+ private Worker _currentWorker = null ! ;
41
41
42
42
internal class Worker
43
43
{
@@ -107,16 +107,26 @@ public interface IWorkerService
107
107
/// Note: There is no way of getting the test status in xUnit in the dispose method.
108
108
/// For more information, see: https://stackoverflow.com/questions/28895448/current-test-status-in-xunit-net
109
109
/// </summary>
110
- public class ExceptionCapturer
110
+ public class ExceptionCapturer : IAsyncLifetime
111
111
{
112
- protected static bool TestOk { get ; private set ; } = true ;
112
+ protected bool TestOk { get ; private set ; } = true ;
113
113
114
- [ ModuleInitializer ]
115
- public static void Setup ( )
114
+ public ExceptionCapturer ( )
116
115
{
117
116
AppDomain . CurrentDomain . FirstChanceException += ( _ , e ) =>
118
117
{
119
118
TestOk = false ;
120
119
} ;
121
120
}
121
+
122
+ public Task InitializeAsync ( )
123
+ {
124
+ TestOk = true ;
125
+ return Task . CompletedTask ;
126
+ }
127
+
128
+ public Task DisposeAsync ( )
129
+ {
130
+ return Task . CompletedTask ;
131
+ }
122
132
}
You can’t perform that action at this time.
0 commit comments