diff --git a/.sauce/config.yml b/.sauce/config.yml index 2f6bc69..5d3e409 100644 --- a/.sauce/config.yml +++ b/.sauce/config.yml @@ -16,6 +16,8 @@ rootDir: ./ suites: - name: "Chrome on macOS" browserName: "chrome" + # Temporarily use Chrome 129. This will be removed once TestCafe resolves the issue with Chrome 130 availability. + browserVersion: "129" src: - "tests/*.test.js" # test files glob platformName: "macOS 12" diff --git a/examples/browser_profile/.sauce/config.yml b/examples/browser_profile/.sauce/config.yml index 56428ff..556934b 100644 --- a/examples/browser_profile/.sauce/config.yml +++ b/examples/browser_profile/.sauce/config.yml @@ -14,30 +14,17 @@ rootDir: ./ suites: - name: "Browser Profile macOS" browserName: "firefox" - browserArgs: [ - # Caution: The path contains a reference to the runner version, '3.9.0' - # in this example. The runner version depends on the requested TestCafe - # version, but is not identical. You can see the runner version in the - # logs during startup: - # Sauce TestCafe Runner 3.9.0 - # Running TestCafe 3.6.2 - "-profile /Volumes/Sauce/saucectl-runners/sauce-testcafe-runner/3.9.0/bundle/__project__/firefox_test_profile", - ] src: - "tests/*.test.js" platformName: "macOS 12" - name: "Browser Profile Windows" browserName: "firefox" - browserArgs: - [ - "-profile D:\\sauce-testcafe-runner\\3.9.0\\bundle\\__project__\\firefox_test_profile", - ] src: - "tests/*.test.js" platformName: "Windows 11" -# env: -# SAUCE_FIREFOX_BROWSER_PROFILE: "firefox_test_profile" # Coming soon! +env: + SAUCE_FIREFOX_BROWSER_PROFILE: "firefox_test_profile" reporters: spotlight: # Prints an overview of failed or otherwise interesting jobs.