Skip to content

Commit 75c8ead

Browse files
committed
Revert warmup counts back to 5
1 parent 4bf783f commit 75c8ead

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

webdriver-ts/src/benchmarksCommon.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export const cpuBenchmarkInfosArray: Array<CPUBenchmarkInfo> = [
127127
{
128128
id: Benchmark._01,
129129
label: "create rows",
130-
warmupCount: 2,
130+
warmupCount: 5,
131131
description: "creating 1,000 rows.",
132132
type: BenchmarkType.CPU,
133133
allowBatching: true,
@@ -137,7 +137,7 @@ export const cpuBenchmarkInfosArray: Array<CPUBenchmarkInfo> = [
137137
{
138138
id: Benchmark._02,
139139
label: "replace all rows",
140-
warmupCount: 2,
140+
warmupCount: 5,
141141
description: "updating all 1,000 rows.",
142142
type: BenchmarkType.CPU,
143143
allowBatching: true,
@@ -157,7 +157,7 @@ export const cpuBenchmarkInfosArray: Array<CPUBenchmarkInfo> = [
157157
{
158158
id: Benchmark._04,
159159
label: "select row",
160-
warmupCount: 2,
160+
warmupCount: 5,
161161
description: "highlighting a selected row.",
162162
type: BenchmarkType.CPU,
163163
allowBatching: true,
@@ -167,7 +167,7 @@ export const cpuBenchmarkInfosArray: Array<CPUBenchmarkInfo> = [
167167
{
168168
id: Benchmark._05,
169169
label: "swap rows",
170-
warmupCount: 2,
170+
warmupCount: 5,
171171
description: "swap 2 rows for table with 1,000 rows.",
172172
type: BenchmarkType.CPU,
173173
allowBatching: true,
@@ -177,7 +177,7 @@ export const cpuBenchmarkInfosArray: Array<CPUBenchmarkInfo> = [
177177
{
178178
id: Benchmark._06,
179179
label: "remove row",
180-
warmupCount: 2,
180+
warmupCount: 5,
181181
description: "removing one row.",
182182
type: BenchmarkType.CPU,
183183
allowBatching: true,
@@ -187,7 +187,7 @@ export const cpuBenchmarkInfosArray: Array<CPUBenchmarkInfo> = [
187187
{
188188
id: Benchmark._07,
189189
label: "create many rows",
190-
warmupCount: 2,
190+
warmupCount: 5,
191191
description: "creating 10,000 rows.",
192192
type: BenchmarkType.CPU,
193193
allowBatching: true,
@@ -197,7 +197,7 @@ export const cpuBenchmarkInfosArray: Array<CPUBenchmarkInfo> = [
197197
{
198198
id: Benchmark._08,
199199
label: "append rows to large table",
200-
warmupCount: 2,
200+
warmupCount: 5,
201201
description: "appending 1,000 to a table of 1,000 rows.",
202202
type: BenchmarkType.CPU,
203203
allowBatching: true,
@@ -207,7 +207,7 @@ export const cpuBenchmarkInfosArray: Array<CPUBenchmarkInfo> = [
207207
{
208208
id: Benchmark._09,
209209
label: "clear rows",
210-
warmupCount: 2,
210+
warmupCount: 5,
211211
description: "clearing a table with 1,000 rows.",
212212
type: BenchmarkType.CPU,
213213
allowBatching: true,

0 commit comments

Comments
 (0)