@@ -450,7 +450,7 @@ describe('ReactIncrementalScheduling', () => {
450450 expect ( ReactNoop . getChildren ( 'c' ) ) . toEqual ( [ span ( 'c:3' ) ] ) ;
451451 } ) ;
452452
453- it ( 'performs animation work in animation callback' , ( ) => {
453+ xit ( 'performs animation work in animation callback' , ( ) => {
454454 class Foo extends React . Component {
455455 componentDidMount ( ) {
456456 // Animation work that will get performed during animation callback
@@ -474,7 +474,7 @@ describe('ReactIncrementalScheduling', () => {
474474 expect ( ReactNoop . getChildren ( 'b' ) ) . toEqual ( [ span ( 'b:1' ) ] ) ;
475475 } ) ;
476476
477- it ( 'schedules deferred work in animation callback' , ( ) => {
477+ xit ( 'schedules deferred work in animation callback' , ( ) => {
478478 class Foo extends React . Component {
479479 componentDidMount ( ) {
480480 // Deferred work that will get scheduled during animation callback
@@ -501,7 +501,7 @@ describe('ReactIncrementalScheduling', () => {
501501 expect ( ReactNoop . getChildren ( 'b' ) ) . toEqual ( [ span ( 'b:1' ) ] ) ;
502502 } ) ;
503503
504- it ( 'schedules deferred work and performs animation work in animation callback' , ( ) => {
504+ xit ( 'schedules deferred work and performs animation work in animation callback' , ( ) => {
505505 let hasScheduled = false ;
506506 class Foo extends React . Component {
507507 componentDidMount ( ) {
@@ -541,7 +541,7 @@ describe('ReactIncrementalScheduling', () => {
541541 expect ( ReactNoop . getChildren ( 'd' ) ) . toEqual ( [ span ( 'd:1' ) ] ) ;
542542 } ) ;
543543
544- it ( 'performs animation work and schedules deferred work in animation callback' , ( ) => {
544+ xit ( 'performs animation work and schedules deferred work in animation callback' , ( ) => {
545545 let hasScheduled = false ;
546546 class Foo extends React . Component {
547547 componentDidMount ( ) {
@@ -583,7 +583,7 @@ describe('ReactIncrementalScheduling', () => {
583583 expect ( ReactNoop . getChildren ( 'd' ) ) . toEqual ( [ span ( 'd:1' ) ] ) ;
584584 } ) ;
585585
586- it ( 'performs deferred work in deferred callback if it has time' , ( ) => {
586+ xit ( 'performs deferred work in deferred callback if it has time' , ( ) => {
587587 class Foo extends React . Component {
588588 componentDidMount ( ) {
589589 // Deferred work that will get performed during deferred callback
@@ -603,7 +603,7 @@ describe('ReactIncrementalScheduling', () => {
603603 expect ( ReactNoop . getChildren ( 'b' ) ) . toEqual ( [ span ( 'b:1' ) ] ) ;
604604 } ) ;
605605
606- it ( 'schedules deferred work in deferred callback if it runs out of time' , ( ) => {
606+ xit ( 'schedules deferred work in deferred callback if it runs out of time' , ( ) => {
607607 let hasScheduled = false ;
608608 class Foo extends React . Component {
609609 componentDidMount ( ) {
@@ -631,7 +631,7 @@ describe('ReactIncrementalScheduling', () => {
631631 expect ( ReactNoop . getChildren ( 'b' ) ) . toEqual ( [ span ( 'b:1' ) ] ) ;
632632 } ) ;
633633
634- it ( 'performs animated work in deferred callback if it has time' , ( ) => {
634+ xit ( 'performs animated work in deferred callback if it has time' , ( ) => {
635635 class Foo extends React . Component {
636636 componentDidMount ( ) {
637637 // Animated work that will get performed during deferred callback
@@ -653,7 +653,7 @@ describe('ReactIncrementalScheduling', () => {
653653 expect ( ReactNoop . getChildren ( 'b' ) ) . toEqual ( [ span ( 'b:1' ) ] ) ;
654654 } ) ;
655655
656- it ( 'performs animated work and deferred work in deferred callback if it has time' , ( ) => {
656+ xit ( 'performs animated work and deferred work in deferred callback if it has time' , ( ) => {
657657 class Foo extends React . Component {
658658 componentDidMount ( ) {
659659 // Deferred work that will get performed during deferred callback
@@ -681,7 +681,7 @@ describe('ReactIncrementalScheduling', () => {
681681 expect ( ReactNoop . getChildren ( 'd' ) ) . toEqual ( [ span ( 'd:1' ) ] ) ;
682682 } ) ;
683683
684- it ( 'performs deferred and animated work work in deferred callback if it has time' , ( ) => {
684+ xit ( 'performs deferred and animated work work in deferred callback if it has time' , ( ) => {
685685 class Foo extends React . Component {
686686 componentDidMount ( ) {
687687 // Animation work that will get performed during deferred callback
@@ -711,7 +711,7 @@ describe('ReactIncrementalScheduling', () => {
711711 expect ( ReactNoop . getChildren ( 'd' ) ) . toEqual ( [ span ( 'd:1' ) ] ) ;
712712 } ) ;
713713
714- it ( 'schedules animated work in deferred callback if it runs out of time' , ( ) => {
714+ xit ( 'schedules animated work in deferred callback if it runs out of time' , ( ) => {
715715 let hasScheduled = false ;
716716 class Foo extends React . Component {
717717 componentDidMount ( ) {
@@ -741,7 +741,7 @@ describe('ReactIncrementalScheduling', () => {
741741 expect ( ReactNoop . getChildren ( 'b' ) ) . toEqual ( [ span ( 'b:1' ) ] ) ;
742742 } ) ;
743743
744- it ( 'schedules animated work and deferred work in deferred callback if it runs out of time' , ( ) => {
744+ xit ( 'schedules animated work and deferred work in deferred callback if it runs out of time' , ( ) => {
745745 let isScheduled = false ;
746746 class Foo extends React . Component {
747747 componentDidMount ( ) {
@@ -779,7 +779,7 @@ describe('ReactIncrementalScheduling', () => {
779779 expect ( ReactNoop . getChildren ( 'd' ) ) . toEqual ( [ span ( 'd:1' ) ] ) ;
780780 } ) ;
781781
782- it ( 'schedules deferred work and animated work in deferred callback if it runs out of time' , ( ) => {
782+ xit ( 'schedules deferred work and animated work in deferred callback if it runs out of time' , ( ) => {
783783 let isScheduled = false ;
784784 class Foo extends React . Component {
785785 componentDidMount ( ) {
0 commit comments