Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
Revert "[cypress] Use Firefox for integration tests"
Browse files Browse the repository at this point in the history
This reverts commit 871ad94.
  • Loading branch information
ramosbugs committed Jul 3, 2023
1 parent 871ad94 commit 510f24c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const parseRunStarting = (
new RegExp(
`^${
// Chrome is slow to launch on Windows.
"Firefox" //process.platform === "win32" ? "Edge" : "Chrome"
process.platform === "win32" ? "Edge" : "Chrome"
} [0-9]+ \x1B\\[90m\\(headless\\)\x1B\\[39m$`
)
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ export const runTestCase = async (
`--${params.testMode}`,
// Chrome is faster than Electron, at least on Mac. However, it's much slower on Windows.
"--browser",
"firefox", // process.platform === "win32" ? "edge" : "chrome",
process.platform === "win32" ? "edge" : "chrome",
...(params.specNameStubs !== undefined
? [
"--spec",
Expand Down

0 comments on commit 510f24c

Please sign in to comment.