Skip to content

Commit 6673822

Browse files
committed
Fix "ERROR [launcher.sauce]: Can not start safari latest"
This commit addresses the following error in the Action Cable integration test: https://buildkite.com/rails/rails/builds/118358#01969a38-6324-4e5f-9ced-bff4b8b87599 ``` 04 05 2025 07:36:27.081:ERROR [launcher.sauce]: Can not start safari latest ... snip ... UnsupportedPlatform - no images found for the specified caps ``` According to https://saucelabs.com/products/platform-configurator, macOS Sonoma 14 is currently in beta on SauceLabs. Therefore, this change uses macOS 13 Ventura and specifies Safari version 16, which is the default Safari version for macOS 13 Ventura.
1 parent 8c5567b commit 6673822

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

actioncable/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if (process.env.CI) {
2525
config.customLaunchers = {
2626
sl_chrome: sauce("chrome", 70),
2727
sl_ff: sauce("firefox", 63),
28-
sl_safari: sauce("safari", "latest"),
28+
sl_safari: sauce("safari", "16", "macOS 13"),
2929
sl_edge: sauce("microsoftedge", 17.17134, "Windows 10"),
3030
}
3131

0 commit comments

Comments
 (0)