@@ -363,7 +363,7 @@ describe('parcoords initialization tests', function() {
363
363
describe ( 'parcoords edge cases' , function ( ) {
364
364
var gd ;
365
365
beforeEach ( function ( ) {
366
- jasmine . DEFAULT_TIMEOUT_INTERVAL = 10000 ;
366
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 15000 ;
367
367
368
368
gd = createGraphDiv ( ) ;
369
369
} ) ;
@@ -636,7 +636,10 @@ describe('parcoords edge cases', function() {
636
636
637
637
describe ( 'parcoords Lifecycle methods' , function ( ) {
638
638
var gd ;
639
- beforeEach ( function ( ) { gd = createGraphDiv ( ) ; } ) ;
639
+ beforeEach ( function ( ) {
640
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 15000 ;
641
+ gd = createGraphDiv ( ) ;
642
+ } ) ;
640
643
afterEach ( destroyGraphDiv ) ;
641
644
642
645
it ( 'Plotly.deleteTraces with one trace removes the plot' , function ( done ) {
@@ -896,7 +899,7 @@ describe('parcoords basic use', function() {
896
899
var gd ;
897
900
898
901
beforeEach ( function ( ) {
899
- jasmine . DEFAULT_TIMEOUT_INTERVAL = 10000 ;
902
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 15000 ;
900
903
901
904
mockCopy = Lib . extendDeep ( { } , mock ) ;
902
905
mockCopy . data [ 0 ] . domain = {
@@ -1212,6 +1215,7 @@ describe('parcoords react more attributes', function() {
1212
1215
var gd ;
1213
1216
1214
1217
beforeEach ( function ( ) {
1218
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 15000 ;
1215
1219
gd = createGraphDiv ( ) ;
1216
1220
} ) ;
1217
1221
@@ -1357,8 +1361,6 @@ describe('parcoords constraint interactions - without defined axis ranges', func
1357
1361
var snapDelay = 100 ;
1358
1362
var noSnapDelay = 20 ;
1359
1363
beforeAll ( function ( ) {
1360
- jasmine . DEFAULT_TIMEOUT_INTERVAL = 10000 ;
1361
-
1362
1364
initialSnapDuration = PC . bar . snapDuration ;
1363
1365
PC . bar . snapDuration = shortenedSnapDuration ;
1364
1366
} ) ;
@@ -1369,6 +1371,7 @@ describe('parcoords constraint interactions - without defined axis ranges', func
1369
1371
} ) ;
1370
1372
1371
1373
beforeEach ( function ( ) {
1374
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 15000 ;
1372
1375
gd = createGraphDiv ( ) ;
1373
1376
} ) ;
1374
1377
@@ -1643,8 +1646,6 @@ describe('parcoords constraint interactions - with defined axis ranges', functio
1643
1646
var shortenedSnapDuration = 20 ;
1644
1647
var noSnapDelay = 20 ;
1645
1648
beforeAll ( function ( ) {
1646
- jasmine . DEFAULT_TIMEOUT_INTERVAL = 10000 ;
1647
-
1648
1649
initialSnapDuration = PC . bar . snapDuration ;
1649
1650
PC . bar . snapDuration = shortenedSnapDuration ;
1650
1651
} ) ;
@@ -1655,6 +1656,7 @@ describe('parcoords constraint interactions - with defined axis ranges', functio
1655
1656
} ) ;
1656
1657
1657
1658
beforeEach ( function ( ) {
1659
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 15000 ;
1658
1660
gd = createGraphDiv ( ) ;
1659
1661
} ) ;
1660
1662
@@ -1737,6 +1739,7 @@ describe('parcoords constraint click interactions - with pre-defined constraint
1737
1739
} ) ;
1738
1740
1739
1741
beforeEach ( function ( ) {
1742
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 15000 ;
1740
1743
gd = createGraphDiv ( ) ;
1741
1744
} ) ;
1742
1745
0 commit comments