Remove jasmine:ci task, execute teaspoon directly on CI

This commit is contained in:
Robert Speicher 2015-06-28 16:27:40 -04:00
parent 9f166a8649
commit 60c7d35543
2 changed files with 2 additions and 14 deletions

View File

@ -45,9 +45,9 @@ spinach:other:
- ruby
- mysql
jasmine:ci:
teaspoon:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake jasmine:ci
- RAILS_ENV=test bundle exec teaspoon
tags:
- ruby
- mysql

View File

@ -1,12 +0,0 @@
# 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