From d476fda95524400158a4b4484c9255abfc6e18e8 Mon Sep 17 00:00:00 2001 From: Fy <1114550440@qq.com> Date: Fri, 20 Dec 2024 10:27:41 +0800 Subject: [PATCH] feat: split big chunks based on modules path similarities (#8775) --- .../rspack_plugin_split_chunks/src/common.rs | 4 + .../src/plugin/max_size.rs | 114 ++- .../max-size-split/rspack.config.js | 22 + .../max-size-split/src/aaa/50k-1.js | 726 ++++++++++++++++++ .../max-size-split/src/aaa/50k-2.js | 726 ++++++++++++++++++ .../max-size-split/src/aaa/50k-3.js | 726 ++++++++++++++++++ .../max-size-split/src/aaa/50k-4.js | 726 ++++++++++++++++++ .../max-size-split/src/bbb/50k-1.js | 726 ++++++++++++++++++ .../max-size-split/src/bbb/50k-2.js | 726 ++++++++++++++++++ .../max-size-split/src/bbb/50k-3.js | 726 ++++++++++++++++++ .../max-size-split/src/bbb/50k-4.js | 726 ++++++++++++++++++ .../max-size-split/src/ccc/50k-1.js | 726 ++++++++++++++++++ .../max-size-split/src/ccc/50k-2.js | 726 ++++++++++++++++++ .../max-size-split/src/ccc/50k-3.js | 726 ++++++++++++++++++ .../max-size-split/src/ccc/50k-4.js | 726 ++++++++++++++++++ .../split-chunks/max-size-split/src/index.js | 10 + .../max-size-split/test.config.js | 7 + 17 files changed, 8847 insertions(+), 22 deletions(-) create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/rspack.config.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-1.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-2.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-3.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-4.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-1.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-2.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-3.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-4.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-1.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-2.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-3.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-4.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/index.js create mode 100644 packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/test.config.js diff --git a/crates/rspack_plugin_split_chunks/src/common.rs b/crates/rspack_plugin_split_chunks/src/common.rs index 8ea0bfa6c1e..1b2f15a003a 100644 --- a/crates/rspack_plugin_split_chunks/src/common.rs +++ b/crates/rspack_plugin_split_chunks/src/common.rs @@ -122,6 +122,10 @@ impl SplitChunkSizes { pub fn add_by(&mut self, other: &Self) { self.combine_with(other, &|a, b| a + b) } + + pub fn subtract_by(&mut self, other: &Self) { + self.combine_with(other, &|a, b| a - b) + } } impl Deref for SplitChunkSizes { diff --git a/crates/rspack_plugin_split_chunks/src/plugin/max_size.rs b/crates/rspack_plugin_split_chunks/src/plugin/max_size.rs index 793c5aa6fe9..dfd1bea6d8d 100644 --- a/crates/rspack_plugin_split_chunks/src/plugin/max_size.rs +++ b/crates/rspack_plugin_split_chunks/src/plugin/max_size.rs @@ -6,8 +6,7 @@ use regex::Regex; use rspack_collections::{DatabaseItem, UkeyMap}; use rspack_core::incremental::Mutation; use rspack_core::{ - compare_modules_by_identifier, ChunkUkey, Compilation, CompilerOptions, Module, ModuleIdentifier, - DEFAULT_DELIMITER, + ChunkUkey, Compilation, CompilerOptions, Module, ModuleIdentifier, DEFAULT_DELIMITER, }; use rspack_error::Result; use rspack_hash::{RspackHash, RspackHashDigest}; @@ -28,10 +27,11 @@ struct Group { nodes: Vec, pub size: SplitChunkSizes, pub key: Option, + pub similarities: Vec, } impl Group { - fn new(items: Vec, key: Option) -> Self { + fn new(items: Vec, key: Option, similarities: Vec) -> Self { let mut summed_size = SplitChunkSizes::empty(); items.iter().for_each(|item| summed_size.add_by(&item.size)); @@ -39,6 +39,7 @@ impl Group { nodes: items, size: summed_size, key, + similarities, } } } @@ -84,21 +85,19 @@ fn deterministic_grouping_for_modules( ) -> Vec { let mut results: Vec = Default::default(); let module_graph = compilation.get_module_graph(); - let mut items = compilation + let items = compilation .chunk_graph .get_chunk_modules(chunk, &module_graph); - - items.sort_unstable_by(|a, b| compare_modules_by_identifier(a, b)); - let context = compilation.options.context.as_ref(); let nodes = items.into_iter().map(|module| { let module: &dyn Module = &**module; - let name: String = if module.name_for_condition().is_some() { - make_paths_relative(context, module.identifier().as_str()) + let name: String = if let Some(name_for_condition) = module.name_for_condition() { + make_paths_relative(context, &name_for_condition) } else { + let path = make_paths_relative(context, module.identifier().as_str()); REPLACE_MODULE_IDENTIFIER_REG - .replace_all(&module.identifier(), "") + .replace_all(&path, "") .to_string() }; let key = format!( @@ -114,7 +113,7 @@ fn deterministic_grouping_for_modules( } }); - let initial_nodes = nodes + let mut initial_nodes = nodes .into_iter() .filter_map(|node| { // The Module itself is already bigger than `allow_max_size`, we will create a chunk @@ -127,7 +126,7 @@ fn deterministic_grouping_for_modules( allow_max_size ); let key = node.key.clone(); - results.push(Group::new(vec![node], Some(key))); + results.push(Group::new(vec![node], Some(key), vec![])); None } else { Some(node) @@ -135,8 +134,11 @@ fn deterministic_grouping_for_modules( }) .collect::>(); + initial_nodes.sort_by(|a, b| a.key.cmp(&b.key)); + if !initial_nodes.is_empty() { - let initial_group = Group::new(initial_nodes, None); + let similarities = get_similarities(&initial_nodes); + let initial_group = Group::new(initial_nodes, None, similarities); let mut queue = vec![initial_group]; @@ -159,16 +161,17 @@ fn deterministic_grouping_for_modules( left += 1; } - let mut right = group.nodes.len() - 2; + let mut right: i32 = group.nodes.len() as i32 - 2; let mut right_size = SplitChunkSizes::empty(); - right_size.add_by(&group.nodes[right + 1].size); - while right != 0 && right_size.smaller_than(min_size) { - right_size.add_by(&group.nodes[right].size); + right_size.add_by(&group.nodes[right as usize + 1].size); - right = right.saturating_sub(1); + while right >= 0 && right_size.smaller_than(min_size) { + right_size.add_by(&group.nodes[right as usize].size); + + right -= 1; } - if left - 1 > right { + if left - 1 > right as usize { // There are overlaps // TODO(hyf0): There are some algorithms we could do better in this @@ -182,11 +185,53 @@ fn deterministic_grouping_for_modules( results.push(group); continue; } else { + let mut pos = left; + let mut best = -1; + let mut best_similarity = usize::MAX; + right_size = group.nodes.iter().rev().take(group.nodes.len() - pos).fold( + SplitChunkSizes::empty(), + |mut acc, node| { + acc.add_by(&node.size); + acc + }, + ); + + while pos <= right as usize + 1 { + let similarity = group.similarities[pos - 1]; + if similarity < best_similarity + && left_size.bigger_than(min_size) + && right_size.bigger_than(min_size) + { + best_similarity = similarity; + best = pos as i32; + } + let size = &group.nodes[pos].size; + left_size.add_by(size); + right_size.subtract_by(size); + pos += 1; + } + + if best == -1 { + results.push(group); + continue; + } + + left = best as usize; + right = best - 1; + + let mut right_similarities = vec![]; + for i in right as usize + 2..group.nodes.len() { + right_similarities.push((group.similarities)[i - 1]); + } + + let mut left_similarities = vec![]; + for i in 1..left { + left_similarities.push((group.similarities)[i - 1]); + } let right_nodes = group.nodes.split_off(left); let left_nodes = group.nodes; - - queue.push(Group::new(right_nodes, None)); - queue.push(Group::new(left_nodes, None)); + queue.push(Group::new(right_nodes, None, right_similarities)); + queue.push(Group::new(left_nodes, None, left_similarities)); } } } @@ -204,6 +249,31 @@ struct ChunkWithSizeInfo<'a> { pub automatic_name_delimiter: &'a String, } +fn get_similarities(nodes: &[GroupItem]) -> Vec { + let mut similarities = Vec::with_capacity(nodes.len()); + let mut nodes = nodes.iter(); + let Some(mut last) = nodes.next() else { + return similarities; + }; + + for node in nodes { + similarities.push(similarity(&last.key, &node.key)); + last = node; + } + + similarities +} + +fn similarity(a: &str, b: &str) -> usize { + let mut a = a.chars(); + let mut b = b.chars(); + let mut dist = 0; + while let (Some(ca), Some(cb)) = (a.next(), b.next()) { + dist += std::cmp::max(0, 10 - (ca as i32 - cb as i32).abs()); + } + dist as usize +} + impl SplitChunksPlugin { /// Affected by `splitChunks.minSize`/`splitChunks.cacheGroups.{cacheGroup}.minSize` #[tracing::instrument(skip_all)] diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/rspack.config.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/rspack.config.js new file mode 100644 index 00000000000..152af0e6c82 --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/rspack.config.js @@ -0,0 +1,22 @@ +/** @type {import("@rspack/core").Configuration} */ +module.exports = { + target: 'node', + entry: "./src/index.js", + output: { + filename: '[name].js' + }, + optimization: { + chunkIds: 'named', + moduleIds: 'named', + splitChunks: { + chunks: "all", + cacheGroups: { + fragment: { + minChunks: 1, + maxSize: 200 * 1024, + priority: 10, + } + } + } + } +}; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-1.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-1.js new file mode 100644 index 00000000000..41dc6d82fbb --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-1.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-2.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-2.js new file mode 100644 index 00000000000..41dc6d82fbb --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-2.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-3.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-3.js new file mode 100644 index 00000000000..d0ab42452a5 --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-3.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-4.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-4.js new file mode 100644 index 00000000000..42e1225cca4 --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/aaa/50k-4.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-1.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-1.js new file mode 100644 index 00000000000..41dc6d82fbb --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-1.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-2.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-2.js new file mode 100644 index 00000000000..41dc6d82fbb --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-2.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-3.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-3.js new file mode 100644 index 00000000000..d0ab42452a5 --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-3.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-4.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-4.js new file mode 100644 index 00000000000..42e1225cca4 --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/bbb/50k-4.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-1.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-1.js new file mode 100644 index 00000000000..41dc6d82fbb --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-1.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-2.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-2.js new file mode 100644 index 00000000000..41dc6d82fbb --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-2.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+

250k is a simple React app that renders 50,000 divs to the DOM.

+

2It's a great way to test the performance of your React app.

+

2It's also a great way to test the performance of your browser.

+

2It's also a great way to test the performance of your computer.

+

2It's also a great way to test the performance of your patience.

+

2It's also a great way to test the performance of your sanity.

+

2It's also a great way to test the performance of your life.

+

2It's also a great way to test the performance of your existence.

+

2It's also a great way to test the performance of your soul.

+

2It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-3.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-3.js new file mode 100644 index 00000000000..d0ab42452a5 --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-3.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+

350k is a simple React app that renders 50,000 divs to the DOM.

+

3It's a great way to test the performance of your React app.

+

3It's also a great way to test the performance of your browser.

+

3It's also a great way to test the performance of your computer.

+

3It's also a great way to test the performance of your patience.

+

3It's also a great way to test the performance of your sanity.

+

3It's also a great way to test the performance of your life.

+

3It's also a great way to test the performance of your existence.

+

3It's also a great way to test the performance of your soul.

+

3It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-4.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-4.js new file mode 100644 index 00000000000..42e1225cca4 --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/ccc/50k-4.js @@ -0,0 +1,726 @@ +export const fiftyK = () => ` +

${window.innerWidth}

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+

450k is a simple React app that renders 50,000 divs to the DOM.

+

4It's a great way to test the performance of your React app.

+

4It's also a great way to test the performance of your browser.

+

4It's also a great way to test the performance of your computer.

+

4It's also a great way to test the performance of your patience.

+

4It's also a great way to test the performance of your sanity.

+

4It's also a great way to test the performance of your life.

+

4It's also a great way to test the performance of your existence.

+

4It's also a great way to test the performance of your soul.

+

4It's also a great way to test the performance of your spirit.

+

50k

+`; diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/index.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/index.js new file mode 100644 index 00000000000..ebe5abe1dd2 --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/src/index.js @@ -0,0 +1,10 @@ +it('should ensure max size fit', () => { + const names = new Array(4).fill('').map((_, i) => { + return `50k-${i + 1}.js`; + }); + names.forEach((name) => { + require('./aaa/' + name) + require('./bbb/' + name) + require('./ccc/' + name) + }) +}) diff --git a/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/test.config.js b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/test.config.js new file mode 100644 index 00000000000..fb86a07388d --- /dev/null +++ b/packages/rspack-test-tools/tests/configCases/split-chunks/max-size-split/test.config.js @@ -0,0 +1,7 @@ +/** @type {import("../../../..").TConfigCaseConfig} */ +module.exports = { + findBundle: function (i, options) { + // should split based on their file path + return ["main.js", "fragment-src_aaa_sync_recursive_.js", "fragment-src_bbb_sync_recursive_.js", "fragment-src_index_js.js"]; + } +};