Skip to content

Commit 5b27e7f

Browse files
committed
mv jasmine test files to test/jasmine/tests/
1 parent f4811f2 commit 5b27e7f

26 files changed

+27
-211
lines changed

test/jasmine/isnumeric_test.js

-184
This file was deleted.

test/jasmine/axes_test.js renamed to test/jasmine/tests/axes_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test axes', function () {
44
'use strict';

test/jasmine/bars_test.js renamed to test/jasmine/tests/bars_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test bars', function () {
44
'use strict';

test/jasmine/boxes_test.js renamed to test/jasmine/tests/boxes_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test boxes', function () {
44
'use strict';

test/jasmine/choropleth_test.js renamed to test/jasmine/tests/choropleth_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test choropleth', function () {
44
'use strict';

test/jasmine/color_test.js renamed to test/jasmine/tests/color_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test color:', function () {
44
'use strict';

test/jasmine/colorscale_test.js renamed to test/jasmine/tests/colorscale_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test colorscale:', function () {
44
'use strict';

test/jasmine/contour_test.js renamed to test/jasmine/tests/contour_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test contour', function () {
44
'use strict';

test/jasmine/events_test.js renamed to test/jasmine/tests/events_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77

8-
var Events = require('../src/events');
8+
var Events = require('@src/events');
99

1010
describe('Events', function () {
1111
'use strict';

test/jasmine/extend_test.js renamed to test/jasmine/tests/extend_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var extendModule = require('../src/lib/extend.js');
1+
var extendModule = require('@src/lib/extend.js');
22
var extendFlat = extendModule.extendFlat;
33
var extendDeep = extendModule.extendDeep;
44
var extendDeepAll = extendModule.extendDeepAll;

test/jasmine/geoaxes_test.js renamed to test/jasmine/tests/geoaxes_test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
var Plotly = require('../src/plotly'),
2-
params = require('../src/geo/lib/params');
1+
var Plotly = require('@src/plotly'),
2+
params = require('@src/geo/lib/params');
33

44
describe('Test geoaxes', function () {
55
'use strict';

test/jasmine/geolayout_test.js renamed to test/jasmine/tests/geolayout_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test geolayout', function () {
44
'use strict';

test/jasmine/gl3daxes_test.js renamed to test/jasmine/tests/gl3daxes_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test Gl3dAxes', function () {
44
'use strict';

test/jasmine/gl3dlayout_test.js renamed to test/jasmine/tests/gl3dlayout_test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
'use strict';
2-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
32

43
describe('Test Gl3dLayout', function () {
4+
'use strict';
55

66
describe('supplyLayoutDefaults', function() {
77
var layoutIn,

test/jasmine/graph_obj_test.js renamed to test/jasmine/tests/graph_obj_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test graph_obj', function () {
44
'use strict';

test/jasmine/heatmap_test.js renamed to test/jasmine/tests/heatmap_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test heatmap', function () {
44
'use strict';

test/jasmine/histogram_test.js renamed to test/jasmine/tests/histogram_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test histogram', function () {
44
'use strict';

test/jasmine/is_plain_object_test.js renamed to test/jasmine/tests/is_plain_object_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('isPlainObject', function() {
44
'use strict';

test/jasmine/legend_test.js renamed to test/jasmine/tests/legend_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test legend:', function () {
44
'use strict';

test/jasmine/lib_test.js renamed to test/jasmine/tests/lib_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test lib.js:', function() {
44
'use strict';

test/jasmine/modebar_test.js renamed to test/jasmine/tests/modebar_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test Modebar', function() {
44
'use strict';

test/jasmine/plots_test.js renamed to test/jasmine/tests/plots_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test Plotly.Plots', function () {
44
'use strict';

test/jasmine/plotschema_test.js renamed to test/jasmine/tests/plotschema_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('plot schema', function() {
44
'use strict';

test/jasmine/scatter_test.js renamed to test/jasmine/tests/scatter_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test scatter', function () {
44
'use strict';

test/jasmine/scattergeo_test.js renamed to test/jasmine/tests/scattergeo_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test scattergeo', function () {
44
'use strict';

test/jasmine/snapshot_clone_test.js renamed to test/jasmine/tests/snapshot_clone_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var Plotly = require('../src/plotly');
1+
var Plotly = require('@src/plotly');
22

33
describe('Test Snapshot.clone', function() {
44
'use strict';

0 commit comments

Comments
 (0)