Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.0.0-beta.1 (2024-10-22)
## 1.0.0-beta.1 (2024-10-23)

### Features Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Create a file `PlaywrightServiceSetup.cs` in the root directory with the below c
```C# Snippet:Sample2_SetDefaultAuthenticationMechanism
using Azure.Developer.MicrosoftPlaywrightTesting.NUnit;

namespace PlaywrightATests; // Remember to change this as per your project namespace
namespace PlaywrightTests; // Remember to change this as per your project namespace

[SetUpFixture]
public class PlaywrightServiceSetup : PlaywrightServiceNUnit {};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This guide will walk you through the steps to integrate your Playwright project
```C# Snippet:Sample2_SetDefaultAuthenticationMechanism
using Azure.Developer.MicrosoftPlaywrightTesting.NUnit;

namespace PlaywrightATests; // Remember to change this as per your project namespace
namespace PlaywrightTests; // Remember to change this as per your project namespace

[SetUpFixture]
public class PlaywrightServiceSetup : PlaywrightServiceNUnit {};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ namespace PlaywrightTests;
#if SNIPPET
public class PlaywrightServiceSetup : PlaywrightServiceNUnit
#else
public class Sample2ServiceSetup : PlaywrightServiceNUnit
public class Sample1ServiceSetup : PlaywrightServiceNUnit
#endif
{
public static readonly TokenCredential managedIdentityCredential = new ManagedIdentityCredential();

#if SNIPPET
public PlaywrightServiceSetup() : base(managedIdentityCredential) {}
#else
public Sample2ServiceSetup() : base(managedIdentityCredential) {}
public Sample1ServiceSetup() : base(managedIdentityCredential) {}
#endif
}
#endregion
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#region Snippet:Sample2_SetDefaultAuthenticationMechanism
using Azure.Developer.MicrosoftPlaywrightTesting.NUnit;

namespace PlaywrightATests; // Remember to change this as per your project namespace
namespace PlaywrightTests; // Remember to change this as per your project namespace

[SetUpFixture]
#if SNIPPET
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.0.0-beta.1 (2024-10-22)
## 1.0.0-beta.1 (2024-10-23)

### Features Added

Expand Down