2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-10-04 17:32:34 +08:00

FIX: specify chrome version (#22681)

This commit is contained in:
Krzysztof Kotlarek 2023-07-19 15:06:56 +10:00 committed by GitHub
parent c2e90f8c07
commit 77b4e42f61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -206,7 +206,7 @@ jobs:

- name: Setup Webdriver
if: matrix.build_type == 'system'
run: bin/rails runner "require 'webdrivers'; Webdrivers::Chromedriver.update"
run: bin/rails runner "require 'webdrivers'; Webdrivers::Chromedriver.required_version='114.0.5735.90'; Webdrivers::Chromedriver.update"

- name: Core System Tests
if: matrix.build_type == 'system' && matrix.target == 'core'

View file

@ -63,6 +63,8 @@ require "webdrivers"
require "selenium-webdriver"
require "capybara/rails"

Webdrivers::Chromedriver.required_version = "114.0.5735.90"

# The shoulda-matchers gem no longer detects the test framework
# you're using or mixes itself into that framework automatically.
Shoulda::Matchers.configure do |config|