Skip to content

Commit e3c8e56

Browse files
committed
fix(net462): support net462
1 parent 8cd88de commit e3c8e56

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

src/Playwright.Xunit/Playwright.Xunit.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
and fixtures to enable using it within xUnit.
1010
</Description>
1111
<PackageIcon>icon.png</PackageIcon>
12-
<TargetFramework>net8.0</TargetFramework>
12+
<TargetFrameworks>net8.0;net462</TargetFrameworks>
1313
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1414
<RunWithWarnings>true</RunWithWarnings>
1515
<RootNamespace>Microsoft.Playwright.Xunit</RootNamespace>

src/Playwright.Xunit/WorkerAwareTest.cs

+16-6
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434

3535
namespace Microsoft.Playwright.Xunit;
3636

37-
public class WorkerAwareTest : ExceptionCapturer, IAsyncLifetime
37+
public class WorkerAwareTest : ExceptionCapturer
3838
{
3939
private static readonly ConcurrentStack<Worker> _allWorkers = new();
40-
private Worker? _currentWorker = null!;
40+
private Worker _currentWorker = null!;
4141

4242
internal class Worker
4343
{
@@ -107,16 +107,26 @@ public interface IWorkerService
107107
/// Note: There is no way of getting the test status in xUnit in the dispose method.
108108
/// For more information, see: https://stackoverflow.com/questions/28895448/current-test-status-in-xunit-net
109109
/// </summary>
110-
public class ExceptionCapturer
110+
public class ExceptionCapturer: IAsyncLifetime
111111
{
112-
protected static bool TestOk { get; private set; } = true;
112+
protected bool TestOk { get; private set; } = true;
113113

114-
[ModuleInitializer]
115-
public static void Setup()
114+
public ExceptionCapturer()
116115
{
117116
AppDomain.CurrentDomain.FirstChanceException += (_, e) =>
118117
{
119118
TestOk = false;
120119
};
121120
}
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+
}
122132
}

0 commit comments

Comments
 (0)