Skip to content

Commit 0e63814

Browse files
committed
do not display the JSON for now
1 parent c46e7c6 commit 0e63814

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

test/jasmine/performance_tests/bar_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ tests.forEach(function(spec, index) {
102102
expect(nodes.size()).toEqual(1);
103103

104104
if(t === nTimes && index === tests.length - 1) {
105-
console.log(JSON.stringify(tests, null, 2));
105+
// console.log(JSON.stringify(tests, null, 2));
106106

107107
writeRawDataAsCSV('bar', tests);
108108
}

test/jasmine/performance_tests/box_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ tests.forEach(function(spec, index) {
103103
expect(nodes.size()).toEqual(1);
104104

105105
if(t === nTimes && index === tests.length - 1) {
106-
console.log(JSON.stringify(tests, null, 2));
106+
// console.log(JSON.stringify(tests, null, 2));
107107

108108
writeRawDataAsCSV('box', tests);
109109
}

test/jasmine/performance_tests/contour_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ tests.forEach(function(spec, index) {
113113
expect(nodes.size()).toEqual(1);
114114

115115
if(t === nTimes && index === tests.length - 1) {
116-
console.log(JSON.stringify(tests, null, 2));
116+
// console.log(JSON.stringify(tests, null, 2));
117117

118118
writeRawDataAsCSV('contour', tests);
119119
}

test/jasmine/performance_tests/heatmap_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ tests.forEach(function(spec, index) {
113113
expect(nodes.size()).toEqual(1);
114114

115115
if(t === nTimes && index === tests.length - 1) {
116-
console.log(JSON.stringify(tests, null, 2));
116+
// console.log(JSON.stringify(tests, null, 2));
117117

118118
writeRawDataAsCSV('heatmap', tests);
119119
}

test/jasmine/performance_tests/histogram_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ tests.forEach(function(spec, index) {
102102
expect(nodes.size()).toEqual(1);
103103

104104
if(t === nTimes && index === tests.length - 1) {
105-
console.log(JSON.stringify(tests, null, 2));
105+
// console.log(JSON.stringify(tests, null, 2));
106106

107107
writeRawDataAsCSV('histogram', tests);
108108
}

test/jasmine/performance_tests/image_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ tests.forEach(function(spec, index) {
120120
expect(nodes.size()).toEqual(1);
121121

122122
if(t === nTimes && index === tests.length - 1) {
123-
console.log(JSON.stringify(tests, null, 2));
123+
// console.log(JSON.stringify(tests, null, 2));
124124

125125
writeRawDataAsCSV('image', tests);
126126
}

test/jasmine/performance_tests/scatter_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ tests.forEach(function(spec, index) {
100100
expect(nodes.size()).toEqual(1);
101101

102102
if(t === nTimes && index === tests.length - 1) {
103-
console.log(JSON.stringify(tests, null, 2));
103+
// console.log(JSON.stringify(tests, null, 2));
104104

105105
writeRawDataAsCSV('scatter', tests);
106106
}

0 commit comments

Comments
 (0)