Commit 8ff27f82ff49a5d3cda205aca21f1cd67facaebf
1 parent
85f6dcca
Exists in
web_steps_improvements
and in
9 other branches
Revert server args for plugins' features
If is weirdly failing (https://gitlab.com/noosfero/noosfero/builds/852331)
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
lib/tasks/plugins_tests.rake
... | ... | @@ -116,8 +116,7 @@ def run_minitest files |
116 | 116 | end |
117 | 117 | |
118 | 118 | def run_cucumber(profile, files) |
119 | - sh 'xvfb-run', '-a', '--server-args="-screen 0, 1280x1024x24"', | |
120 | - 'ruby', '-S', 'cucumber', '--profile', profile.to_s, '--format', ENV['CUCUMBER_FORMAT'] || 'progress' , *files | |
119 | + sh 'xvfb-run', '-a', 'ruby', '-S', 'cucumber', '--profile', profile.to_s, '--format', ENV['CUCUMBER_FORMAT'] || 'progress' , *files | |
121 | 120 | end |
122 | 121 | |
123 | 122 | def custom_run(name, files, run=:all) | ... | ... |