Commit 4642dcd5 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'rs-update-gitlab-ci' into 'master'

Remove jasmine:ci task, execute teaspoon directly on CI

See merge request !901
parents 9f166a86 60c7d355
...@@ -45,9 +45,9 @@ spinach:other: ...@@ -45,9 +45,9 @@ spinach:other:
- ruby - ruby
- mysql - mysql
jasmine:ci: teaspoon:
script: script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake jasmine:ci - RAILS_ENV=test bundle exec teaspoon
tags: tags:
- ruby - ruby
- mysql - mysql
......
# Since we no longer explicitly require the 'jasmine' gem, we lost the
# `jasmine:ci` task used by GitLab CI jobs.
#
# This provides a simple alias to run the `spec:javascript` task from the
# 'jasmine-rails' gem.
task jasmine: ['jasmine:ci']
namespace :jasmine do
task :ci do
Rake::Task['teaspoon'].invoke
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment