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
2 changes: 1 addition & 1 deletion web/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
testImplementation(platform("org.junit:junit-bom:6.0.2"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testImplementation("com.microsoft.playwright:playwright:1.57.0")
testImplementation("com.microsoft.playwright:playwright:1.58.0")
testImplementation("com.github.romankh3:image-comparison:4.4.0")
testImplementation("org.assertj:assertj-core:3.27.7")
testImplementation("org.testcontainers:testcontainers:2.0.3")
Expand Down
Binary file modified web/playwright/expected/chromium_a4_image_expected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/playwright/expected/chromium_a4_overview_expected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/playwright/expected/chromium_a7_image_expected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/playwright/expected/chromium_c6onA4_image_expected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/playwright/expected/chromium_card_bw_expected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified web/playwright/expected/chromium_letter_image_expected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ public class PlaywrightScreenshotTest {
static final long TEST_ID = System.currentTimeMillis();
static final int PLAYWRIGHT_PORT = 3000;
@Container
static GenericContainer<?> playwrightContainer = new GenericContainer<>("mcr.microsoft.com/playwright:v1.57.0-noble")
static GenericContainer<?> playwrightContainer = new GenericContainer<>("mcr.microsoft.com/playwright:v1.58.0-noble")
.withExposedPorts(PLAYWRIGHT_PORT)
.withAccessToHost(true)
.withCommand("/bin/bash", "-c", "npx -y playwright@1.57.0 run-server --port 3000 --host 0.0.0.0")
.withCommand("/bin/bash", "-c", "npx -y playwright@1.58.0 run-server --port 3000 --host 0.0.0.0")
.waitingFor(Wait.forLogMessage(".*Listening on.*", 1));
static Playwright playwright;
static Browser chromium;
Expand Down
Loading