Skip to content

Commit

Permalink
Fix integration test helper
Browse files Browse the repository at this point in the history
  • Loading branch information
rsamoilov committed Dec 18, 2024
1 parent 42017d4 commit 8b9a81a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec/support/integration_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
module IntegrationHelper
def launch_server(env: {})
Bundler.with_unbundled_env do
system("gem build -o rage-local.gem && gem install rage-local.gem --no-document && bundle install")
system("gem build -o rage-local.gem && gem install rage-local.gem --no-document")
system("bundle install", chdir: "spec/integration/test_app")
@pid = spawn(env, "bundle exec rage s", chdir: "spec/integration/test_app")
sleep(1)
end
Expand Down

0 comments on commit 8b9a81a

Please sign in to comment.