Acceptance tests for user

This commit is contained in:
2015-09-17 17:46:33 +02:00
parent 8e931cabd4
commit cb744943bd
35 changed files with 91 additions and 49 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env ruby
require 'pathname'
require 'active_support/all'
mozo_user_path = ENV['MOZO_USER_PATH'] || Pathname.new(File.expand_path('../../../mozo-user', __FILE__))
Dir.chdir mozo_user_path do
`ember build --output-path=../mozo/public/user/ --environment=testexport` # not production, because then the production servers will be queried
end