@@ -49,7 +49,7 @@ describe('ExampleComponent', () => {
49
49
component . handleAction ( { target : el , visible : false } as InViewportAction ) ;
50
50
spectator . detectChanges ( ) ;
51
51
52
- expect ( el ) . not . toHaveClass ( activeClassName ) ;
52
+ expect ( el ?. classList . contains ( activeClassName ) ) . toBe ( false ) ;
53
53
} ) ;
54
54
55
55
it ( 'should be active item' , ( ) => {
@@ -58,7 +58,7 @@ describe('ExampleComponent', () => {
58
58
component . handleAction ( { target : el , visible : true } as InViewportAction ) ;
59
59
spectator . detectChanges ( ) ;
60
60
61
- expect ( el ) . toHaveClass ( activeClassName ) ;
61
+ expect ( el ?. classList . contains ( activeClassName ) ) . toBe ( true ) ;
62
62
} ) ;
63
63
} ) ;
64
64
@@ -76,7 +76,7 @@ describe('ExampleComponent', () => {
76
76
component . handleAction ( { target : el , visible : false } as InViewportAction ) ;
77
77
spectator . detectChanges ( ) ;
78
78
79
- expect ( el ) . not . toHaveClass ( activeClassName ) ;
79
+ expect ( el ?. classList . contains ( activeClassName ) ) . toBe ( false ) ;
80
80
} ) ;
81
81
82
82
it ( 'should be active item' , ( ) => {
@@ -85,7 +85,7 @@ describe('ExampleComponent', () => {
85
85
component . handleAction ( { target : el , visible : true } as InViewportAction ) ;
86
86
spectator . detectChanges ( ) ;
87
87
88
- expect ( el ) . toHaveClass ( activeClassName ) ;
88
+ expect ( el ?. classList . contains ( activeClassName ) ) . toBe ( true ) ;
89
89
} ) ;
90
90
} ) ;
91
91
} ) ;
0 commit comments