|
1 |
| -'use strict'; |
2 |
| - |
3 | 1 | var Plotly = require('@lib/index');
|
4 | 2 | var Lib = require('@src/lib');
|
5 | 3 | var d3 = require('d3');
|
@@ -197,25 +195,25 @@ describe('contourgl plots', function() {
|
197 | 195 | makePlot(gd, mockCopy, done);
|
198 | 196 | });
|
199 | 197 |
|
200 |
| - it('render without raising an error (coloring: "lines")', function(done) { |
| 198 | + it('@gl render without raising an error (coloring: "lines")', function(done) { |
201 | 199 | var mock = Lib.extendDeep({}, plotDataElliptical(0));
|
202 | 200 | mock.data[0].contours.coloring = 'lines'; // 'fill' is the default
|
203 | 201 | makePlot(gd, mock, done);
|
204 | 202 | });
|
205 | 203 |
|
206 |
| - it('render smooth, regular ellipses without raising an error (coloring: "fill")', function(done) { |
| 204 | + it('@gl render smooth, regular ellipses without raising an error (coloring: "fill")', function(done) { |
207 | 205 | var mock = plotDataElliptical(0);
|
208 | 206 | makePlot(gd, mock, done);
|
209 | 207 | });
|
210 | 208 |
|
211 |
| - it('render ellipses with added noise without raising an error (coloring: "fill")', function(done) { |
| 209 | + it('@gl render ellipses with added noise without raising an error (coloring: "fill")', function(done) { |
212 | 210 | var mock = plotDataElliptical(0.5);
|
213 | 211 | mock.data[0].contours.coloring = 'fill'; // 'fill' is the default
|
214 | 212 | mock.data[0].line = {smoothing: 0};
|
215 | 213 | makePlot(gd, mock, done);
|
216 | 214 | });
|
217 | 215 |
|
218 |
| - it('should update properly', function(done) { |
| 216 | + it('@gl should update properly', function(done) { |
219 | 217 | var mock = plotDataElliptical(0);
|
220 | 218 | var scene2d;
|
221 | 219 |
|
|
0 commit comments