@@ -8,13 +8,13 @@ describe('bootstrap transition mixins', () => {
8
8
const css = getTransitionUtilities ( enableTransitions , 'all .2s ease-in-out' , 'height .35s ease' ) ;
9
9
expect ( css ) . not . toContain ( 'undefined' ) ;
10
10
expect ( css ) . not . toContain ( 'null' ) ;
11
- expect ( fromJS ( { css } ) . hashCode ( ) ) . toEqual ( 6006592 ) ;
11
+ expect ( fromJS ( { css } ) . hashCode ( ) ) . toEqual ( 760045004 ) ;
12
12
} ) ;
13
13
it ( 'should have parameters' , ( ) => {
14
14
const css = getTransitionUtilities ( ) ;
15
15
expect ( css ) . not . toContain ( 'undefined' ) ;
16
16
expect ( css ) . not . toContain ( 'null' ) ;
17
- expect ( fromJS ( { css } ) . hashCode ( ) ) . toEqual ( 419397045 ) ;
17
+ expect ( fromJS ( { css } ) . hashCode ( ) ) . toEqual ( - 486265482 ) ;
18
18
} ) ;
19
19
} ) ;
20
20
describe ( 'fade' , ( ) => {
@@ -36,17 +36,17 @@ describe('bootstrap transition mixins', () => {
36
36
describe ( 'collapse' , ( ) => {
37
37
it ( 'should return a css with defaultProps' , ( ) => {
38
38
const css = collapse ( ) ;
39
- expect ( fromJS ( { css } ) . hashCode ( ) ) . toEqual ( 330977907 ) ;
39
+ expect ( fromJS ( { css } ) . hashCode ( ) ) . toEqual ( 204352853 ) ;
40
40
} ) ;
41
41
it ( 'should return a css with transition' , ( ) => {
42
42
const enableTransitions = true ;
43
43
const css = collapse ( enableTransitions , 'height .35s ease' ) ;
44
- expect ( fromJS ( { css } ) . hashCode ( ) ) . toEqual ( 330977907 ) ;
44
+ expect ( fromJS ( { css } ) . hashCode ( ) ) . toEqual ( 204352853 ) ;
45
45
} ) ;
46
46
it ( 'should return a css without transition' , ( ) => {
47
47
const enableTransitions = false ;
48
48
const css = collapse ( enableTransitions , 'height .35s ease' ) ;
49
- expect ( fromJS ( { css } ) . hashCode ( ) ) . toEqual ( 1058176073 ) ;
49
+ expect ( fromJS ( { css } ) . hashCode ( ) ) . toEqual ( - 987798304 ) ;
50
50
} ) ;
51
51
} ) ;
52
52
describe ( 'getReactTransition' , ( ) => {
0 commit comments