Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
test
autotest-playwright-web-spd
Commits
054b25a4
Commit
054b25a4
authored
Sep 15, 2026
by
liguangyu06
Browse files
Fix merge-reports spawn options syntax so CI can start Playwright.
parent
fe65124c
Changes
1
Hide whitespace changes
Inline
Side-by-side
scripts/run-ci.mjs
View file @
054b25a4
...
...
@@ -231,7 +231,7 @@ function mergeAllureResults(sourceDirs, dest) {
function
mergeBlobHtml
(
blobDir
,
htmlDir
)
{
if
(
!
existsSync
(
blobDir
)
||
readdirSync
(
blobDir
).
length
===
0
)
return
false
;
const
result
=
spawnSync
(
process
.
execPath
,
[
PLAYWRIGHT_CLI
,
'
merge-reports
'
,
blobDir
,
'
--reporter
'
,
'
html
'
],
{
})
const
result
=
spawnSync
(
process
.
execPath
,
[
PLAYWRIGHT_CLI
,
'
merge-reports
'
,
blobDir
,
'
--reporter
'
,
'
html
'
],
{
cwd
:
ROOT
,
stdio
:
'
inherit
'
,
env
:
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment