Skip to content

Commit bcc756a

Browse files
committed
add a few missing @gl tags
1 parent e26f8f4 commit bcc756a

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

test/jasmine/tests/gl2d_scatterplot_contour_test.js

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
'use strict';
2-
31
var Plotly = require('@lib/index');
42
var Lib = require('@src/lib');
53
var d3 = require('d3');
@@ -197,25 +195,25 @@ describe('contourgl plots', function() {
197195
makePlot(gd, mockCopy, done);
198196
});
199197

200-
it('render without raising an error (coloring: "lines")', function(done) {
198+
it('@gl render without raising an error (coloring: "lines")', function(done) {
201199
var mock = Lib.extendDeep({}, plotDataElliptical(0));
202200
mock.data[0].contours.coloring = 'lines'; // 'fill' is the default
203201
makePlot(gd, mock, done);
204202
});
205203

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) {
207205
var mock = plotDataElliptical(0);
208206
makePlot(gd, mock, done);
209207
});
210208

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) {
212210
var mock = plotDataElliptical(0.5);
213211
mock.data[0].contours.coloring = 'fill'; // 'fill' is the default
214212
mock.data[0].line = {smoothing: 0};
215213
makePlot(gd, mock, done);
216214
});
217215

218-
it('should update properly', function(done) {
216+
it('@gl should update properly', function(done) {
219217
var mock = plotDataElliptical(0);
220218
var scene2d;
221219

test/jasmine/tests/gl3dlayout_test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,10 @@ describe('Test Gl3d layout defaults', function() {
277277
describe('Gl3d layout edge cases', function() {
278278
var gd;
279279

280-
beforeEach(function() {gd = createGraphDiv(); });
280+
beforeEach(function() { gd = createGraphDiv(); });
281281
afterEach(destroyGraphDiv);
282282

283-
it('should handle auto aspect ratio correctly on data changes', function(done) {
283+
it('@gl should handle auto aspect ratio correctly on data changes', function(done) {
284284
Plotly.plot(gd, [{x: [1, 2], y: [1, 3], z: [1, 4], type: 'scatter3d'}])
285285
.then(function() {
286286
var aspect = gd.layout.scene.aspectratio;

test/jasmine/tests/mesh3d_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('Test mesh3d', function() {
99
describe('restyle', function() {
1010
afterEach(destroyGraphDiv);
1111

12-
it('should clear *cauto* when restyle *cmin* and/or *cmax*', function(done) {
12+
it('@gl should clear *cauto* when restyle *cmin* and/or *cmax*', function(done) {
1313
var gd = createGraphDiv();
1414

1515
function _assert(user, full) {

test/jasmine/tests/scatterpolargl_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ describe('Test scatterpolargl hover:', function() {
108108
name: 'Trial 3'
109109
}]
110110
.forEach(function(specs) {
111-
it('should generate correct hover labels ' + specs.desc, function(done) {
111+
it('@gl should generate correct hover labels ' + specs.desc, function(done) {
112112
run(specs).catch(failTest).then(done);
113113
});
114114
});

test/jasmine/tests/volume_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ describe('Test volume', function() {
264264
destroyGraphDiv();
265265
});
266266

267-
it('should clear *cauto* when restyle *cmin* and/or *cmax*', function(done) {
267+
it('@gl should clear *cauto* when restyle *cmin* and/or *cmax*', function(done) {
268268
function _assert(user, full) {
269269
var trace = gd.data[0];
270270
var fullTrace = gd._fullData[0];

0 commit comments

Comments
 (0)