mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
FIX: specify chrome version (#22681)
This commit is contained in:
parent
c2e90f8c07
commit
77b4e42f61
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@ -206,7 +206,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Setup Webdriver
|
- name: Setup Webdriver
|
||||||
if: matrix.build_type == 'system'
|
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
|
- name: Core System Tests
|
||||||
if: matrix.build_type == 'system' && matrix.target == 'core'
|
if: matrix.build_type == 'system' && matrix.target == 'core'
|
||||||
|
@ -63,6 +63,8 @@ require "webdrivers"
|
|||||||
require "selenium-webdriver"
|
require "selenium-webdriver"
|
||||||
require "capybara/rails"
|
require "capybara/rails"
|
||||||
|
|
||||||
|
Webdrivers::Chromedriver.required_version = "114.0.5735.90"
|
||||||
|
|
||||||
# The shoulda-matchers gem no longer detects the test framework
|
# The shoulda-matchers gem no longer detects the test framework
|
||||||
# you're using or mixes itself into that framework automatically.
|
# you're using or mixes itself into that framework automatically.
|
||||||
Shoulda::Matchers.configure do |config|
|
Shoulda::Matchers.configure do |config|
|
||||||
|
Loading…
Reference in New Issue
Block a user