Co-authored-by: Krzysztof Kotlarek <kotlarek.krzysztof@gmail.com>
This commit is contained in:
parent
461966e028
commit
cc54539f90
|
@ -175,6 +175,10 @@ jobs:
|
|||
if: matrix.build_type == 'system'
|
||||
run: bin/ember-cli --build
|
||||
|
||||
- name: Setup Webdriver
|
||||
if: matrix.build_type == 'system'
|
||||
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'
|
||||
run: bin/rspec spec/system --format documentation --profile
|
||||
|
|
|
@ -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|
|
||||
|
|
Loading…
Reference in New Issue