Skip to content

Commit 6a4964d

Browse files
benchmark: increase size of testing object (#425)
1 parent 03f8714 commit 6a4964d

File tree

1 file changed

+32
-4
lines changed

1 file changed

+32
-4
lines changed

benchmark/bench.js

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,12 +163,40 @@ const benchmarks = [
163163
schema: {
164164
type: 'object',
165165
properties: {
166-
s: { type: 'string' },
167-
n: { type: 'number' },
168-
b: { type: 'boolean' }
166+
s1: { type: 'string' },
167+
n1: { type: 'number' },
168+
b1: { type: 'boolean' },
169+
s2: { type: 'string' },
170+
n2: { type: 'number' },
171+
b2: { type: 'boolean' },
172+
s3: { type: 'string' },
173+
n3: { type: 'number' },
174+
b3: { type: 'boolean' },
175+
s4: { type: 'string' },
176+
n4: { type: 'number' },
177+
b4: { type: 'boolean' },
178+
s5: { type: 'string' },
179+
n5: { type: 'number' },
180+
b5: { type: 'boolean' }
169181
}
170182
},
171-
input: { s: 'hello world', n: 42, b: true }
183+
input: {
184+
s1: 'hello world',
185+
n1: 42,
186+
b1: true,
187+
s2: 'hello world',
188+
n2: 42,
189+
b2: true,
190+
s3: 'hello world',
191+
n3: 42,
192+
b3: true,
193+
s4: 'hello world',
194+
n4: 42,
195+
b4: true,
196+
s5: 'hello world',
197+
n5: 42,
198+
b5: true
199+
}
172200
}
173201
]
174202

0 commit comments

Comments
 (0)