summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-07-06 15:50:37 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-07-06 15:50:37 +0200
commitb2e2444436eef059e151869b4d2d0ea871ebc30e (patch)
treed37ff813507913fbee98c6e9362d6c44710db900 /lib
parent1165d3dce1c726f4c29ec1932cc6f386ce617e8d (diff)
parent18ef9befc0de176d6b7bf7daa3f364e38c3d768f (diff)
downloadgitlab-ce-b2e2444436eef059e151869b4d2d0ea871ebc30e.tar.gz
Merge pull request #9430 from gitlabhq/fix-rake-test-ci
Use teaspoon instead of jasmine:ci
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/test.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/test.rake b/lib/tasks/test.rake
index b9f9c72c91f..c5666d49e61 100644
--- a/lib/tasks/test.rake
+++ b/lib/tasks/test.rake
@@ -9,5 +9,5 @@ unless Rails.env.production?
require 'coveralls/rake/task'
Coveralls::RakeTask.new
desc "GitLab | Run all tests on CI with simplecov"
- task :test_ci => [:rubocop, :brakeman, 'jasmine:ci', :spinach, :spec, 'coveralls:push']
+ task :test_ci => [:rubocop, :brakeman, 'teaspoon', :spinach, :spec, 'coveralls:push']
end