mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
6 lines
203 B
Ruby
6 lines
203 B
Ruby
|
desc "run phantomjs based smoke tests on current build"
|
||
|
task "smoke:test" => :environment do
|
||
|
results = `phantomjs #{Rails.root}/spec/phantom_js/smoke_test.js #{Discourse.base_url}`
|
||
|
puts results
|
||
|
end
|