aboutsummaryrefslogtreecommitdiffstats
path: root/bench/tests/10000-pathArrays.js
diff options
context:
space:
mode:
authordotnetCarpenter <jon.ronnenberg@gmail.com>2017-04-11 18:57:32 +0200
committerdotnetCarpenter <jon.ronnenberg@gmail.com>2017-04-11 18:57:32 +0200
commitae7b087db03e330bef21f026a652759d9bd7f57e (patch)
tree4b00fcba1713a691e3299a0089f227a5835597bc /bench/tests/10000-pathArrays.js
parent117b7fbe8db0bbbda7fc7c951d7d83005e1a669b (diff)
downloadsvg.js-ae7b087db03e330bef21f026a652759d9bd7f57e.tar.gz
svg.js-ae7b087db03e330bef21f026a652759d9bd7f57e.zip
change benchmark svg.js identifier to 2.5.2
Diffstat (limited to 'bench/tests/10000-pathArrays.js')
-rw-r--r--bench/tests/10000-pathArrays.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/bench/tests/10000-pathArrays.js b/bench/tests/10000-pathArrays.js
index b30229a..871d022 100644
--- a/bench/tests/10000-pathArrays.js
+++ b/bench/tests/10000-pathArrays.js
@@ -5,17 +5,17 @@ SVG.bench.describe('Generate 10000 pathArrays', function(bench) {
var data3 = 'M10 10-45-30.5.5 .89L2e-2.5.5.5-.5C.5.5.5.5.5.5L-3-4z'
- bench.test('using SVG.js v2.5.1', function() {
+ bench.test('using SVG.js v2.5.2', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data)
})
- bench.test('using SVG.js v2.5.1 more data', function() {
+ bench.test('using SVG.js v2.5.2 more data', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data2)
})
- bench.test('using SVG.js v2.5.1 complicated data', function() {
+ bench.test('using SVG.js v2.5.2 complicated data', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data3)
})