Index: test/js-perf-test/SixSpeed.json |
diff --git a/test/js-perf-test/SixSpeed.json b/test/js-perf-test/SixSpeed.json |
index 47c6d934af58db34df6097d687ebc09139c7155b..a8d429ff6f9683727f4cbf7dee6dec9791b0177c 100644 |
--- a/test/js-perf-test/SixSpeed.json |
+++ b/test/js-perf-test/SixSpeed.json |
@@ -54,17 +54,21 @@ |
{ |
"name": "SuperSpread", |
"path": ["SixSpeed/super_spread"], |
- "main": "run.js", |
- "resources": [ |
- "run.js", |
- "super_spread.js" |
- ], |
"flags": ["--future"], |
"results_regexp": "^%s\\(Score\\): (.+)$", |
Michael Achenbach
2017/02/02 14:50:19
Did you check locally that this works? It can be t
petermarshall
2017/02/03 09:54:35
Yes it runs locally and produces the correct JSON.
|
"tests": [ |
- {"name": "SuperSpread-ES5"}, |
- {"name": "SuperSpread-Babel"}, |
- {"name": "SuperSpread-ES6"} |
+ { |
+ "name": "ES5", |
Michael Achenbach
2017/02/02 14:50:19
You could also reuse the same run.js and pass a di
petermarshall
2017/02/03 09:54:35
That is awesome, I was wondering if there was some
|
+ "main": "es5.js" |
+ }, |
+ { |
+ "name": "Babel", |
+ "main": "babel.js" |
+ }, |
+ { |
+ "name": "ES6", |
+ "main": "es6.js" |
+ } |
] |
} |
] |