Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb0e26a7

Browse files
authored
chore: bump Playwright to v1.42 (#273)
1 parent8678e85 commitb0e26a7

File tree

8 files changed

+2696
-469
lines changed

8 files changed

+2696
-469
lines changed

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Try Playwright
22

33
![CI](https://github.com/mxschmitt/try-playwright/workflows/CI/badge.svg)
4-
![Playwright version](https://img.shields.io/badge/Playwright-1.41.0-blue.svg)
4+
![Playwright version](https://img.shields.io/badge/Playwright-1.42.1-blue.svg)
55

66
>Interactive playground for[Playwright](https://github.com/microsoft/playwright) to run examples directly from your browser
77

‎e2e/tests/visual.spec.ts‎

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ test.describe('Examples', () => {
3232
awaittpPage.executeExample(1)
3333
awaitexpect(tpPage.images).toHaveCount(2)
3434
awaitexpect(tpPage.videos).toHaveCount(0)
35-
awaitexpect(tpPage.fileNames).toHaveText([
36-
"example-chromium.png",
37-
"example-webkit.png",
38-
])
35+
awaitexpect(tpPage.fileNames).toContainText(["example-chromium.png"])
36+
awaitexpect(tpPage.fileNames).toContainText(["example-webkit.png"])
37+
awaitexpect(tpPage.fileNames).toHaveCount(2)
3938
})
4039
test("2: should be able to set the geolocation",async({ tpPage})=>{
4140
awaittpPage.executeExample(2)

‎frontend/src/components/Editor/types.txt‎

Lines changed: 2687 additions & 459 deletions
Large diffs are not rendered by default.

‎worker-csharp/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PLAYWRIGHT_VERSION=1.41.1
1+
ARG PLAYWRIGHT_VERSION=1.42.0
22
FROM golang:1.20-buster as builder
33
WORKDIR /root
44
COPY go.mod /root/

‎worker-java/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PLAYWRIGHT_VERSION=1.41.0
1+
ARG PLAYWRIGHT_VERSION=1.42.0
22
FROM golang:1.20-buster as builder
33
WORKDIR /root
44
COPY go.mod /root/

‎worker-java/main.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func handler(w *worker.Worker, code string) error {
3030
iferr:=os.WriteFile(sourceFile, []byte(code),0644);err!=nil {
3131
returnfmt.Errorf("could not write Java source files: %v",err)
3232
}
33-
iferr:=w.ExecCommand("javac","--class-path",classPath,sourceFile);err!=nil {
33+
iferr:=w.ExecCommand("javac","-proc:none","--class-path",classPath,sourceFile);err!=nil {
3434
returnfmt.Errorf("could not compile: %w",err)
3535
}
3636
returnw.ExecCommand("java","--class-path",classPath,filepath.Join("org","example",className))

‎worker-javascript/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PLAYWRIGHT_VERSION=1.41.0
1+
ARG PLAYWRIGHT_VERSION=1.42.1
22
FROM golang:1.20-buster as builder
33
WORKDIR /root
44
COPY go.mod /root/

‎worker-python/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PLAYWRIGHT_VERSION=1.41.0
1+
ARG PLAYWRIGHT_VERSION=1.42.0
22
FROM golang:1.20-buster as builder
33
WORKDIR /root
44
COPY go.mod /root/

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp