cherry-pick(#15881): docs: fix broken .NET intro example (#15885)

This commit is contained in:
Ross Wollman 2022-07-22 11:14:58 -07:00 committed by GitHub
parent b86776df99
commit 0776b954c3
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;