From ce8b7ad04aef92f98f71e27c8f5b2c5da1207f72 Mon Sep 17 00:00:00 2001 From: Johny Ho Date: Sat, 13 Apr 2024 23:35:26 -0400 Subject: [PATCH] wip --- .../test/acceptance/superglue_installation_acceptance.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/superglue_rails/test/acceptance/superglue_installation_acceptance.rb b/superglue_rails/test/acceptance/superglue_installation_acceptance.rb index 1eacd845..427778a2 100644 --- a/superglue_rails/test/acceptance/superglue_installation_acceptance.rb +++ b/superglue_rails/test/acceptance/superglue_installation_acceptance.rb @@ -83,7 +83,7 @@ def add_esbuild_cmd end def generate_test_app_7(app_name) - successfully "bundle exec rails new #{app_name} \ + successfully "rails new #{app_name} \ --javascript=esbuild \ --skip-git \ --skip-hotwire \ @@ -117,6 +117,7 @@ def test_installation Dir.mkdir(TMP_DIR) unless Dir.exist?(TMP_DIR) Dir.chdir(TMP_DIR) do FileUtils.rm_rf("testapp") + successfully "which -a rails" generate_test_app_7 "testapp" Dir.chdir("testapp") do successfully "bundle install"