@@ -160,7 +160,7 @@ def test_100_android_build_release_with_and_bundle_and_uglify(self):
160
160
main_page_xml_size = File .get_size (os .path .join (base_path , "main-page.xml" ))
161
161
apk_size = File .get_size (Helpers .get_apk_path (app_name = self .app_name , config = "release" ))
162
162
163
- assert 3500 < bundle_js_size < 3750 , "Actual bundle_js_size is " + str (bundle_js_size )
163
+ assert 4000 < bundle_js_size < 5000 , "Actual bundle_js_size is " + str (bundle_js_size )
164
164
assert 30 < starter_js_size < 50 , "Actual starter_js_size is " + str (starter_js_size )
165
165
assert 670000 < vendor_js_size < 680000 , "Actual vendor_js_size is " + str (vendor_js_size )
166
166
assert 1600 < main_page_xml_size < 2000 , "Actual main_page_xml_size is " + main_page_xml_size
@@ -183,7 +183,7 @@ def test_100_ios_build_release_with_and_bundle_and_uglify(self):
183
183
vendor_js_size = File .get_size (os .path .join (app_path , "app" , "vendor.js" ))
184
184
main_page_xml_size = File .get_size (os .path .join (app_path , "app" , "main-page.xml" ))
185
185
ipa_size = File .get_size (ipa_path )
186
- assert 3500 < bundle_js_size < 3750 , "Actual bundle_js_size is " + str (bundle_js_size )
186
+ assert 4000 < bundle_js_size < 5000 , "Actual bundle_js_size is " + str (bundle_js_size )
187
187
assert 30 < starter_js_size < 50 , "Actual starter_js_size is " + str (starter_js_size )
188
188
assert 685000 < vendor_js_size < 695000 , "Actual vendor_js_size is " + str (vendor_js_size )
189
189
assert 1600 < main_page_xml_size < 2000 , "Actual main_page_xml_size is " + main_page_xml_size
@@ -261,7 +261,7 @@ def test_120_android_build_release_with_and_bundle_and_snapshot_and_uglify(self)
261
261
main_page_xml_size = File .get_size (os .path .join (base_path , "main-page.xml" ))
262
262
apk_size = File .get_size (Helpers .get_apk_path (app_name = self .app_name , config = "release" ))
263
263
264
- assert 3500 < bundle_js_size < 3750
264
+ assert 4000 < bundle_js_size < 5000 , "Actual bundle_js_size is " + str ( bundle_js_size )
265
265
assert 30 < starter_js_size < 50
266
266
assert vendor_js_size == 0
267
267
assert 1600 < main_page_xml_size < 2000
@@ -285,7 +285,7 @@ def test_120_ios_build_release_with_and_bundle_and_snapshot_and_uglify(self):
285
285
vendor_js_size = File .get_size (os .path .join (app_path , "app" , "vendor.js" ))
286
286
main_page_xml_size = File .get_size (os .path .join (app_path , "app" , "main-page.xml" ))
287
287
ipa_size = File .get_size (ipa_path )
288
- assert 3500 < bundle_js_size < 3750
288
+ assert 4000 < bundle_js_size < 5000 , "Actual bundle_js_size is " + str ( bundle_js_size )
289
289
assert 30 < starter_js_size < 50
290
290
assert 680000 < vendor_js_size < 700000 , "Actual vendor_js_size is " + str (vendor_js_size )
291
291
assert 1600 < main_page_xml_size < 2000
0 commit comments