Skip to content

Commit fd56490

Browse files
committed
run all test cases
1 parent ae35d00 commit fd56490

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

test/jasmine/performance_tests/assets/test_cases.js

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
var tests = [];
22

3-
/*
43
for(let traceType of ['image', 'heatmap', 'contour']) {
54
for(let m of [10, 20, 40, 80, 160, 320, 640, 1280]) {
65
let nx = 5 * m;
@@ -16,7 +15,6 @@ for(let traceType of ['image', 'heatmap', 'contour']) {
1615
});
1716
}
1817
}
19-
*/
2018

2119
function fillArrayFromToBy(start, end, step) {
2220
const result = [];
@@ -28,11 +26,10 @@ function fillArrayFromToBy(start, end, step) {
2826

2927
//var allN = [1000, 2000, 4000, 8000, 16000, 32000, 64000, 128000];
3028
var allN = fillArrayFromToBy(64000, 128000, 1000);
31-
//var allNTraces = [1, /*10, */100]
32-
var allNTraces = [1]
29+
var allNTraces = [1, 10, 100]
3330

34-
for(let traceType of [/*'box', */'violin']) {
35-
for(let mode of [/*'no_points', */'all_points']) {
31+
for(let traceType of ['box', 'violin']) {
32+
for(let mode of ['no_points', 'all_points']) {
3633
for(let nTraces of allNTraces) {
3734
for(let n of allN) {
3835
tests.push({
@@ -52,7 +49,7 @@ for(let traceType of [/*'box', */'violin']) {
5249
}
5350

5451
for(let traceType of ['scatter', 'scattergl', 'scattergeo']) {
55-
for(let mode of [/*'markers', 'lines', */'markers+lines']) {
52+
for(let mode of ['markers', 'lines', 'markers+lines']) {
5653
for(let nTraces of allNTraces) {
5754
for(let n of allN) {
5855
tests.push({
@@ -70,8 +67,8 @@ for(let traceType of ['scatter', 'scattergl', 'scattergeo']) {
7067
}
7168
}
7269

73-
for(let traceType of ['bar'/*, 'histogram'*/]) {
74-
for(let mode of ['group'/*, 'stack', 'overlay'*/]) {
70+
for(let traceType of ['bar', 'histogram']) {
71+
for(let mode of ['group', 'stack', 'overlay']) {
7572
for(let nTraces of allNTraces) {
7673
for(let n of allN) {
7774
tests.push({

0 commit comments

Comments
 (0)