diff options
author | Rafael França <rafael@franca.dev> | 2019-07-26 13:13:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-26 13:13:06 -0400 |
commit | d937e1f4ca6da53cc641fca808fd79919f579c62 (patch) | |
tree | 06d6897c5144194951bd290b6186af5e45a843ba /railties | |
parent | 344bed41d0bb29bb7964b695e51a333395bd43f8 (diff) | |
parent | 8fdf6d934e9a2b4bc3d2bcf76476bf0763cea304 (diff) | |
download | rails-d937e1f4ca6da53cc641fca808fd79919f579c62.tar.gz rails-d937e1f4ca6da53cc641fca808fd79919f579c62.tar.bz2 rails-d937e1f4ca6da53cc641fca808fd79919f579c62.zip |
Merge pull request #36778 from abhaynikam/remove-unwanted-javascript-compile-from-test
Removed webpacker:compile step from scaffold test as it is not required
Diffstat (limited to 'railties')
-rw-r--r-- | railties/test/application/rake_test.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/test/application/rake_test.rb b/railties/test/application/rake_test.rb index fe56e3d076..e8456e8c19 100644 --- a/railties/test/application/rake_test.rb +++ b/railties/test/application/rake_test.rb @@ -162,7 +162,6 @@ module ApplicationTests rails "generate", "scaffold", "user", "username:string", "password:string" with_rails_env("test") do rails("db:migrate") - rails("webpacker:compile") end output = rails("test") @@ -194,7 +193,6 @@ module ApplicationTests rails "generate", "scaffold", "LineItems", "product:references", "cart:belongs_to" with_rails_env("test") do rails("db:migrate") - rails("webpacker:compile") end output = rails("test") |