File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -142,6 +142,8 @@ export class RippleRenderer implements EventListenerObject {
142
142
const userTransitionProperty = computedStyles . transitionProperty ;
143
143
const userTransitionDuration = computedStyles . transitionDuration ;
144
144
145
+ console . log ( userTransitionDuration , userTransitionProperty ) ;
146
+
145
147
// Note: We detect whether animation is forcibly disabled through CSS by the use
146
148
// of `transition: none`. This is technically unexpected since animations are
147
149
// controlled through the animation config, but this exists for backwards compatibility
Original file line number Diff line number Diff line change @@ -790,7 +790,7 @@ describe('MatRipple', () => {
790
790
expect ( rippleTarget . querySelectorAll ( '.mat-ripple-element' ) . length ) . toBe ( 0 ) ;
791
791
} ) ;
792
792
793
- it ( 'should handle forcibly disabled animations through CSS `transition-duration: 0ms`' , async ( ) => {
793
+ fit ( 'should handle forcibly disabled animations through CSS `transition-duration: 0ms`' , async ( ) => {
794
794
fixture = TestBed . createComponent ( RippleCssTransitionDurationZero ) ;
795
795
fixture . detectChanges ( ) ;
796
796
You can’t perform that action at this time.
0 commit comments