diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2017-10-19 11:01:52 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2017-10-19 11:01:52 -0500 |
commit | 4dcf12a340f82fb01453ef3b7aca6df756bdaa65 (patch) | |
tree | 5bae45481d1598e8b8704cf319808b7e0f295237 /actionview | |
parent | b7bf70982395ee5fd2e89064f87f268eeddb9d6d (diff) | |
download | rails-4dcf12a340f82fb01453ef3b7aca6df756bdaa65.tar.gz rails-4dcf12a340f82fb01453ef3b7aca6df756bdaa65.tar.bz2 rails-4dcf12a340f82fb01453ef3b7aca6df756bdaa65.zip |
PhantomJS is abandoned, replace it with Selenium/Chrome headless
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/Rakefile b/actionview/Rakefile index 20dfa4e114..5f1c055692 100644 --- a/actionview/Rakefile +++ b/actionview/Rakefile @@ -45,7 +45,7 @@ namespace :test do end end - system("npm run lint && phantomjs ../ci/phantomjs.js http://localhost:4567/") + system("npm run lint && bundle exec ruby ../ci/qunit-selenium-runner.rb http://localhost:4567/") status = $?.to_i ensure Process.kill("KILL", pid) if pid |