summaryrefslogtreecommitdiffstats
path: root/bench/tests/10000-pathArrays.js
diff options
context:
space:
mode:
authorwout <wout@mick-wout.com>2017-04-07 20:20:02 +0200
committerwout <wout@mick-wout.com>2017-04-07 20:20:02 +0200
commit270874248df9a034b24d49d8db00cba6529e7f4b (patch)
tree064381f2819a3b2289cc2c29383ccadae191d9cd /bench/tests/10000-pathArrays.js
parent5e9ed619e6a7ce6530b928d76a0412f364cd6bbc (diff)
downloadsvg.js-270874248df9a034b24d49d8db00cba6529e7f4b.tar.gz
svg.js-270874248df9a034b24d49d8db00cba6529e7f4b.zip
Updated CHANGELOG
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 fc34e5f..b30229a 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.4.0', function() {
+ bench.test('using SVG.js v2.5.1', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data)
})
- bench.test('using SVG.js v2.4.0 more data', function() {
+ bench.test('using SVG.js v2.5.1 more data', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data2)
})
- bench.test('using SVG.js v2.4.0 complicated data', function() {
+ bench.test('using SVG.js v2.5.1 complicated data', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data3)
})