Skip to content

Commit db59620

Browse files
Bump com.microsoft.playwright:playwright from 1.57.0 to 1.58.0 (#114)
* Bump com.microsoft.playwright:playwright from 1.57.0 to 1.58.0 Bumps [com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java) from 1.57.0 to 1.58.0. - [Release notes](https://github.com/microsoft/playwright-java/releases) - [Commits](microsoft/playwright-java@v1.57.0...v1.58.0) --- updated-dependencies: - dependency-name: com.microsoft.playwright: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 test * cleanup --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: twonirwana <jvs@mailbox.org>
1 parent 812bf6f commit db59620

File tree

8 files changed

+3
-3
lines changed

8 files changed

+3
-3
lines changed

web/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626
testImplementation(platform("org.junit:junit-bom:6.0.2"))
2727
testImplementation("org.junit.jupiter:junit-jupiter")
2828
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
29-
testImplementation("com.microsoft.playwright:playwright:1.57.0")
29+
testImplementation("com.microsoft.playwright:playwright:1.58.0")
3030
testImplementation("com.github.romankh3:image-comparison:4.4.0")
3131
testImplementation("org.assertj:assertj-core:3.27.7")
3232
testImplementation("org.testcontainers:testcontainers:2.0.3")
4 Bytes
Loading
-28 Bytes
Loading
-50 Bytes
Loading
-464 Bytes
Loading
-463 Bytes
Loading
171 Bytes
Loading

web/src/test/java/de/twonirwana/infinity/PlaywrightScreenshotTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ public class PlaywrightScreenshotTest {
4444
static final long TEST_ID = System.currentTimeMillis();
4545
static final int PLAYWRIGHT_PORT = 3000;
4646
@Container
47-
static GenericContainer<?> playwrightContainer = new GenericContainer<>("mcr.microsoft.com/playwright:v1.57.0-noble")
47+
static GenericContainer<?> playwrightContainer = new GenericContainer<>("mcr.microsoft.com/playwright:v1.58.0-noble")
4848
.withExposedPorts(PLAYWRIGHT_PORT)
4949
.withAccessToHost(true)
50-
.withCommand("/bin/bash", "-c", "npx -y playwright@1.57.0 run-server --port 3000 --host 0.0.0.0")
50+
.withCommand("/bin/bash", "-c", "npx -y playwright@1.58.0 run-server --port 3000 --host 0.0.0.0")
5151
.waitingFor(Wait.forLogMessage(".*Listening on.*", 1));
5252
static Playwright playwright;
5353
static Browser chromium;

0 commit comments

Comments
 (0)