docs: fix broken .NET intro example (#15881)

This commit is contained in:
Max Schmitt 2022-07-22 17:45:18 +02:00 committed by GitHub
parent 380910359a
commit 92d65ab3e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,6 +85,7 @@ Edit the `UnitTest1.cs` file with the code below to create an example end-to-end
<TabItem value="nunit">
```csharp
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Microsoft.Playwright.NUnit;
using NUnit.Framework;
@ -121,6 +122,7 @@ public class Tests : PageTest
<TabItem value="mstest">
```csharp
using System.Text.RegularExpressions;
using Microsoft.Playwright.MSTest;
namespace PlaywrightTests;