diff --git a/Gemfile b/Gemfile index c097fcd96..b906d9ad6 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,6 @@ source 'https://rubygems.org' gem 'csscss', '~> 1.3.3' -gem 'mediawiki_selenium', '~> 1.6.5' +gem 'mediawiki_selenium', '~> 1.7' +gem 'rake', '~> 11.1', '>= 11.1.1' gem 'rubocop', '~> 0.34.2', require: false diff --git a/Gemfile.lock b/Gemfile.lock index 8e9969eb5..2ce723c4d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -22,9 +22,9 @@ GEM faker (>= 1.1.2) yml_reader (>= 0.6) diff-lcs (1.2.5) - domain_name (0.5.20160128) + domain_name (0.5.20160310) unf (>= 0.0.5, < 1.0.0) - faker (1.6.1) + faker (1.6.3) i18n (~> 0.5) faraday (0.9.2) multipart-post (>= 1.2, < 3) @@ -34,7 +34,7 @@ GEM ffi (1.9.10) gherkin (2.12.2) multi_json (~> 1.3) - headless (2.2.0) + headless (2.2.3) http-cookie (1.0.2) domain_name (~> 0.5) i18n (0.7.0) @@ -42,7 +42,7 @@ GEM mediawiki_api (0.5.0) faraday (~> 0.9, >= 0.9.0) faraday-cookie_jar (~> 0.0, >= 0.0.6) - mediawiki_selenium (1.6.5) + mediawiki_selenium (1.7.0) cucumber (~> 1.3, >= 1.3.20) headless (~> 2.0, >= 2.1.0) json (~> 1.8, >= 1.8.1) @@ -53,8 +53,8 @@ GEM rspec-expectations (~> 2.14, >= 2.14.4) syntax (~> 1.2, >= 1.2.0) thor (~> 0.19, >= 0.19.1) - mime-types (2.99) - multi_json (1.11.2) + mime-types (2.99.1) + multi_json (1.11.3) multi_test (0.1.2) multipart-post (2.0.0) netrc (0.11.0) @@ -70,6 +70,7 @@ GEM blankslate (>= 2.0, <= 4.0) powerpack (0.1.1) rainbow (2.0.0) + rake (11.1.1) rest-client (1.8.0) http-cookie (>= 1.0.2, < 2.0) mime-types (>= 1.16, < 3.0) @@ -84,10 +85,9 @@ GEM rainbow (>= 1.99.1, < 3.0) ruby-progressbar (~> 1.4) ruby-progressbar (1.7.5) - rubyzip (1.1.7) - selenium-webdriver (2.50.0) + rubyzip (1.2.0) + selenium-webdriver (2.53.0) childprocess (~> 0.5) - multi_json (~> 1.0) rubyzip (~> 1.0) websocket (~> 1.0) syntax (1.2.0) @@ -97,7 +97,7 @@ GEM unf_ext (0.0.7.2) watir-webdriver (0.9.1) selenium-webdriver (>= 2.46.2) - websocket (1.2.2) + websocket (1.2.3) yml_reader (0.7) PLATFORMS @@ -105,7 +105,8 @@ PLATFORMS DEPENDENCIES csscss (~> 1.3.3) - mediawiki_selenium (~> 1.6.5) + mediawiki_selenium (~> 1.7) + rake (~> 11.1, >= 11.1.1) rubocop (~> 0.34.2) BUNDLED WITH diff --git a/Rakefile b/Rakefile index 6eef12162..2877bf695 100644 --- a/Rakefile +++ b/Rakefile @@ -8,6 +8,9 @@ RuboCop::RakeTask.new(:rubocop) do |task| task.options = ['-c', '.rubocop.yml'] end +require 'mediawiki_selenium/rake_task' +MediawikiSelenium::RakeTask.new + task default: [:test] desc 'Run all build/tests commands (CI entry point)' diff --git a/tests/browser/ci.yml b/tests/browser/ci.yml new file mode 100644 index 000000000..c2eca9342 --- /dev/null +++ b/tests/browser/ci.yml @@ -0,0 +1,9 @@ +BROWSER: + - chrome + - firefox + +MEDIAWIKI_ENVIRONMENT: + - beta + +PLATFORM: + - Linux