We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a0569b commit 32bc9d0Copy full SHA for 32bc9d0
2 files changed
.github/workflows/actions/set-screen-resolution/action.yml
@@ -23,7 +23,7 @@ runs:
23
run: |
24
pnpm --filter @vscode-wdio/xvfb-patch run patch
25
26
- # https://github.com/actions/runner-images/issues/8606
+ # already use FHD resolution
27
- name: Set display resolution on MacOS
28
if: runner.os == 'macOS'
29
shell: bash
infra/xvfb-patch/src/index.ts
@@ -10,7 +10,7 @@ const width = 1920
10
const height = 1920
11
12
const insertBefore = "const dblDashPos = args.indexOf('--'),"
13
-const codeToInsert = ` args.unshift('--server-args=-screen 0 ${width}x${height}x24', '--');`
+const codeToInsert = ` args.unshift('--server-args="'-screen 0 ${width}x${height}x24'"', '--');`
14
15
const sourceCode = fs.readFileSync(filePath, 'utf-8')
16
0 commit comments