Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Jul 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/src/intro-csharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -121,6 +122,7 @@ public class Tests : PageTest
<TabItem value="mstest">

```csharp
using System.Text.RegularExpressions;
using Microsoft.Playwright.MSTest;

namespace PlaywrightTests;
Expand Down