Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mydea committed Feb 3, 2025
1 parent 99a3775 commit 3b511f1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ ${changedPaths.join('\n')}
try {
await new Promise<void>((resolve, reject) => {
const cp = childProcess.spawn(
`npx playwright test ${testPaths.length ? testPaths.join(' ') : './suites'} --repeat-each ${repeatEachCount} --project=chromium`,
`npx playwright test ${
testPaths.length ? testPaths.join(' ') : './suites'
} --repeat-each ${repeatEachCount} --project=chromium`,
{ shell: true, cwd, stdio: 'inherit' },
);

Expand Down

0 comments on commit 3b511f1

Please sign in to comment.