Skip to content

Commit 83baaf0

Browse files
Bump Microsoft.Playwright from 1.57.0 to 1.58.0 (#3771)
* Bump Microsoft.Playwright from 1.57.0 to 1.58.0 --- updated-dependencies: - dependency-name: Microsoft.Playwright dependency-version: 1.58.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Fix tests React to removed property. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martin Costello <martin@martincostello.com>
1 parent 8324345 commit 83baaf0

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PackageVersion Include="Microsoft.Kiota.Bundle" Version="1.21.2" />
2020
<PackageVersion Include="Microsoft.OpenApi" Version="2.4.1" />
2121
<PackageVersion Include="Microsoft.OpenApi.YamlReader" Version="2.4.1" />
22-
<PackageVersion Include="Microsoft.Playwright" Version="1.57.0" />
22+
<PackageVersion Include="Microsoft.Playwright" Version="1.58.0" />
2323
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
2424
<PackageVersion Include="MSBuild.ProjectCreation" Version="17.0.1" />
2525
<PackageVersion Include="Newtonsoft.Json" Version="13.0.4" />

test/Swashbuckle.AspNetCore.IntegrationTests/PlaywrightFixture.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@ public async Task VerifyPage(string url, Func<IPage, Task> test)
3030

3131
if (System.Diagnostics.Debugger.IsAttached)
3232
{
33-
#pragma warning disable CS0612
34-
options.Devtools = true;
35-
#pragma warning restore CS0612
33+
options.Args = ["--auto-open-devtools-for-tabs"];
3634
options.Headless = false;
3735
options.SlowMo = 100;
3836
}

0 commit comments

Comments
 (0)