aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2018-10-21 22:40:01 +0300
committerbogdanvlviv <bogdanvlviv@gmail.com>2018-10-21 22:40:01 +0300
commit9629354abbb5e96142834497f80d267e96536ced (patch)
tree3e5b7d2c81083cf02944ee092a30d4b280d0c50a /railties/test
parentb004e767e03f11eb7e13828a5efbe030eb861cb0 (diff)
downloadrails-9629354abbb5e96142834497f80d267e96536ced.tar.gz
rails-9629354abbb5e96142834497f80d267e96536ced.tar.bz2
rails-9629354abbb5e96142834497f80d267e96536ced.zip
Remove yarn's files from `.gitignore` template for new rails app
Webpacker already does it, see https://github.com/rails/webpacker/blob/895d2cfc15eda2edae9e667c642a02523d958f53/lib/install/template.rb#L25-L33 I also opened PR https://github.com/rails/webpacker/pull/1765 in order to make it add `/yarn-error.log` file too.
Diffstat (limited to 'railties/test')
-rw-r--r--railties/test/generators/shared_generator_tests.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/railties/test/generators/shared_generator_tests.rb b/railties/test/generators/shared_generator_tests.rb
index 398466aa22..9b980bd52b 100644
--- a/railties/test/generators/shared_generator_tests.rb
+++ b/railties/test/generators/shared_generator_tests.rb
@@ -339,11 +339,6 @@ module SharedGeneratorTests
run_generator
assert_file "#{application_path}/package.json", /dependencies/
assert_file "#{application_path}/config/initializers/assets.rb", /node_modules/
-
- assert_file ".gitignore" do |content|
- assert_match(/node_modules/, content)
- assert_match(/yarn-error\.log/, content)
- end
end
def test_generator_for_yarn_skipped
@@ -354,10 +349,5 @@ module SharedGeneratorTests
assert_file "#{application_path}/config/initializers/assets.rb" do |content|
assert_no_match(/node_modules/, content)
end
-
- assert_file ".gitignore" do |content|
- assert_no_match(/node_modules/, content)
- assert_no_match(/yarn-error\.log/, content)
- end
end
end