Skip to content

Commit

Permalink
docs(playwrighttesting):Changelog for 1.0.0-beta.4 and updated versio…
Browse files Browse the repository at this point in the history
…n. (Azure#47531)

* docs(playwrighttesting):Changelog for 1.0.0-beta.4

* docs(playwrighttesting):Changelog for 1.0.0-beta.4

* update

---------

Co-authored-by: guptakashish <[email protected]>
  • Loading branch information
kashish2508 and guptakashish authored Dec 12, 2024
1 parent b547930 commit 2f845fc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# Release History

## 1.0.0-beta.4 (Unreleased)

### Features Added

### Breaking Changes
## 1.0.0-beta.4 (2024-12-13)

### Bugs Fixed

### Other Changes
- Fixed a bug where upload results were incomplete for large size classname suites.

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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# Release History

## 1.0.0-beta.4 (Unreleased)

### Features Added

### Breaking Changes
## 1.0.0-beta.4 (2024-12-13)

### Bugs Fixed

### Other Changes
- Fixed a bug where upload results were incomplete for large size classname suites.


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

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.3",
ReporterPackageVersion = "1.0.0-beta.4",
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.3", result.TestRunConfig!.ReporterPackageVersion);
Assert.AreEqual("1.0.0-beta.4", result.TestRunConfig!.ReporterPackageVersion);
Assert.IsNotNull(result.TestRunConfig!.Shards);
Assert.AreEqual(1, result.TestRunConfig!.Shards!.Total);
}
Expand Down

0 comments on commit 2f845fc

Please sign in to comment.