From 144d488c419378fc9239e2ea84ae641f0b30ebc8 Mon Sep 17 00:00:00 2001 From: Szymon Cofalik Date: Wed, 2 Oct 2024 18:10:43 +0200 Subject: [PATCH] Slight code style change. --- tests/manual/performance/2024/init.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tests/manual/performance/2024/init.js b/tests/manual/performance/2024/init.js index 63a2a1e7b42..bcf6e675400 100644 --- a/tests/manual/performance/2024/init.js +++ b/tests/manual/performance/2024/init.js @@ -10,9 +10,15 @@ import allDataSets from './data/generated/index.js'; import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor.js'; // TEST CONFIG. -const TRIES_PER_DATA_SET = 10; // Number of tries per data set. -const DATA_SET_NAME = null; // Change to string with data set name if you want to check only specific data set. -const REMOVE_OUTLIERS = 1; // Change to `0` to keep all values in the results. Change to higher value to remove more outliers. +// Number of tries per data set. +const TRIES_PER_DATA_SET = 10; + +// Change to string with data set name if you want to check only specific data set. +const DATA_SET_NAME = null; + +// Change to `0` to keep all values in the results. Change to higher value to remove more outliers. +const REMOVE_OUTLIERS = 1; +// END OF TEST CONFIG. // If `DATA_SET_NAME` is defined, keep only that data set. const dataSets = DATA_SET_NAME ? { [ DATA_SET_NAME ]: allDataSets[ DATA_SET_NAME ] } : allDataSets;