Skip to content

Commit

Permalink
ci(e2e): fix e2e all action error (#2738)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzcr authored Jan 6, 2025
1 parent a1afc8c commit f923ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internals/playwright-config/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const Config = ({ testDir, baseURL, storageState, devServerCommon }) =>
: {
command: devServerCommon,
url: baseURL,
reuseExistingServer: !process.env.CI,
reuseExistingServer: !!process.env.CI,
stdout: 'pipe'
},
projects: [
Expand Down

0 comments on commit f923ae3

Please sign in to comment.