summaryrefslogtreecommitdiff
path: root/lib/tasks/jasmine.rake
blob: ac307a9e9293bc85fcd594dd080e8b46877b8fc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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