Skip to content

Commit

Permalink
docs(playwrighttesting): 1.0.0-beta.3 release changes (#47151)
Browse files Browse the repository at this point in the history
* docs(playwrighttesting): 1.0.0-beta.3 release changes

* removed unused changes

* update

* Update CHANGELOG.md

* Update CHANGELOG.md

* modified test

---------

Co-authored-by: guptakashish <guptakashish@microsoft.com>
  • Loading branch information
kashish2508 and guptakashish authored Nov 18, 2024
1 parent 7764f8d commit caede08
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Release History

## 1.0.0-beta.3 (Unreleased)
## 1.0.0-beta.3 (2024-11-18)

### Features Added

### Breaking Changes
- Added a runName field which allows customers to customize the display name when using the reporting feature.
- Added stacktrace into error list.

### Bugs Fixed

- Fixed a bug where the upload buffer and upload file methods were not awaited, which sometimes resulted in 404 errors in the web application.
- Fixed a bug where the authentication error occurred when the scalable scenario was disabled in Playwright testing.
- Fixed a bug where the GetConnectOptionsAsync method did not use the runsetting defaults in Playwright testing.

### Other Changes

- Populated NumberOfTestWorkers from runsettings.

## 1.0.0-beta.2 (2024-11-05)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Release History

## 1.0.0-beta.3 (Unreleased)
## 1.0.0-beta.3 (2024-11-18)

### Features Added

### Breaking Changes
- Added a runName field which allows customers to customize the display name when using the reporting feature.
- Added stacktrace into error list.

### Bugs Fixed

- Fixed a bug where the upload buffer and upload file methods were not awaited, which sometimes resulted in 404 errors in the web application.
- Fixed a bug where the authentication error occurred when the scalable scenario was disabled in Playwright testing.
- Fixed a bug where the GetConnectOptionsAsync method did not use the runsetting defaults in Playwright testing.

### Other Changes

- Populated NumberOfTestWorkers from runsettings.

## 1.0.0-beta.2 (2024-11-05)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public TestRunDto GetTestRun()
TestType = "WebTest",
TestSdkLanguage = "CSHARP",
TestFramework = new TestFramework() { Name = "PLAYWRIGHT", RunnerName = "NUNIT", Version = "3.1" }, // TODO fetch runner name MSTest/Nunit
ReporterPackageVersion = "1.0.0-beta.1",
ReporterPackageVersion = "1.0.0-beta.3",
Shards = new Shard() { Total = 1 }
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void GetTestRun_ReturnsTestRunDto()
Assert.AreEqual("PLAYWRIGHT", result.TestRunConfig!.TestFramework!.Name);
Assert.AreEqual("NUNIT", result.TestRunConfig!.TestFramework!.RunnerName);
Assert.AreEqual("3.1", result.TestRunConfig!.TestFramework!.Version);
Assert.AreEqual("1.0.0-beta.1", result.TestRunConfig!.ReporterPackageVersion);
Assert.AreEqual("1.0.0-beta.3", result.TestRunConfig!.ReporterPackageVersion);
Assert.IsNotNull(result.TestRunConfig!.Shards);
Assert.AreEqual(1, result.TestRunConfig!.Shards!.Total);
}
Expand Down

0 comments on commit caede08

Please sign in to comment.