test: Drop threshold for JS builds to be 1% (3.3 KB) (#26426)

Multiple recent cases of unknowingly pushing more JS in `/app`'s JS.
This commit is contained in:
Ankush Menat 2024-05-13 15:38:14 +05:30 committed by GitHub
parent 78321360a6
commit 65debdb137
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -897,7 +897,7 @@ class TestBenchBuild(BaseTestCommands):
self.assertEqual(result.exception, None)
CURRENT_SIZE = 3.3 # MB
JS_ASSET_THRESHOLD = 0.05
JS_ASSET_THRESHOLD = 0.01
hooks = frappe.get_hooks()
default_bundle = hooks["app_include_js"]