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 40c615a commit eb5244aCopy full SHA for eb5244a
tests/app/settings.py
@@ -119,7 +119,7 @@
119
'BUNDLE_DIR_NAME': 'bundles/',
120
'STATS_FILE': os.path.join(BASE_DIR, 'webpack-stats-app2.json'),
121
},
122
- 'NO_IGNORE': {
+ 'NO_IGNORE_APP': {
123
'IGNORE': [],
124
125
}
tests/app/tests/test_webpack.py
@@ -74,7 +74,7 @@ def test_simple_and_css_extract(self):
74
75
def test_default_ignore_config_ignores_map_files(self):
76
self.compile_bundles('webpack.config.sourcemaps.js')
77
- chunks = get_loader('NO_IGNORE').get_bundle('main')
+ chunks = get_loader('NO_IGNORE_APP').get_bundle('main')
78
has_map_files_chunks = any([".map" in chunk["name"] for chunk in chunks])
79
80
self.assertTrue(has_map_files_chunks)
0 commit comments