Actions
Feature #21361
closedPlugins ui tests rake task
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Description
From #12822#note-32
diff --git a/lib/tasks/redmine.rake b/lib/tasks/redmine.rake
--- a/lib/tasks/redmine.rake
+++ b/lib/tasks/redmine.rake
@@ -171,6 +171,13 @@ DESC
t.verbose = true
t.pattern = "plugins/#{ENV['NAME'] || '*'}/test/integration/**/*_test.rb"
end
+
+ desc 'Runs the plugins ui tests.'
+ Rake::TestTask.new :ui => "db:test:prepare" do |t|
+ t.libs << "test"
+ t.verbose = true
+ t.pattern = "plugins/#{ENV['NAME'] || '*'}/test/ui/**/*_test.rb"
+ end
end
end
end
Related issues
Updated by Toshi MARUYAMA about 7 years ago
- Related to Defect #27067: Missed task for redmine:plugins:test added
Actions