We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e581a5f commit c542b1eCopy full SHA for c542b1e
test/react/server_rendering/webpacker_manifest_container_test.rb
@@ -32,6 +32,10 @@ def test_it_loads_from_webpack_dev_server
32
webpack_manifest = Webpacker::Manifest.instance.data
33
example_asset_path = webpack_manifest.values.first
34
if example_asset_path.nil?
35
+ puts "Manifest is blank, all manifests:"
36
+ Dir.glob("./test/dummy/public/packs/*.json").each do |f|
37
+ puts File.read(f)
38
+ end
39
next
40
end
41
assert_includes example_asset_path, "http://localhost:8080"
0 commit comments