@@ -10,7 +10,7 @@ Plotly.register([
1010 require ( '@src/transforms/groupby' )
1111] ) ;
1212
13- describe ( 'groupby' , function ( ) {
13+ fdescribe ( 'groupby' , function ( ) {
1414
1515 describe ( 'one-to-many transforms:' , function ( ) {
1616 'use strict' ;
@@ -350,7 +350,7 @@ describe('groupby', function() {
350350 describe ( 'grouping with basic, heterogenous and overridden attributes' , function ( ) {
351351 'use strict' ;
352352
353- // afterEach(destroyGraphDiv);
353+ afterEach ( destroyGraphDiv ) ;
354354
355355 function test ( mockData ) {
356356
@@ -511,8 +511,15 @@ describe('groupby', function() {
511511 it ( 'passes with lots of attributes and heterogenous attrib presence' , test ( mockData2 ) ) ;
512512
513513 it ( 'passes with group styles partially overriding top level aesthetics' , test ( mockData3 ) ) ;
514- expect ( gd . _fullData [ 0 ] . marker . line . color ) . toEqual ( [ 'orange' , 'red' , 'cyan' , 'pink' ] ) ;
515- expect ( gd . _fullData [ 1 ] . marker . line . color ) . toEqual ( 'yellow' ) ;
514+ it ( 'passes extended tests with group styles partially overriding top level aesthetics' , function ( done ) {
515+ var data = Lib . extendDeep ( [ ] , mockData3 ) ;
516+ var gd = createGraphDiv ( ) ;
517+ Plotly . plot ( gd , data ) . then ( function ( ) {
518+ expect ( gd . _fullData [ 0 ] . marker . line . color ) . toEqual ( [ 'orange' , 'red' , 'cyan' , 'pink' ] ) ;
519+ expect ( gd . _fullData [ 1 ] . marker . line . color ) . toEqual ( 'yellow' ) ;
520+ done ( ) ;
521+ } ) ;
522+ } ) ;
516523
517524 it ( 'passes with no explicit styling for the individual group' , test ( mockData4 ) ) ;
518525
0 commit comments