Total Complexity | 4 |
Complexity/F | 1 |
Lines of Code | 22 |
Function Count | 4 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | import { Animation } from '../../../controls'; |
||
2 | |||
3 | describe( 'Animation Control', function() { |
||
4 | let $target = $( '<div data-wow-duration="1.5s" data-wow-delay="0s">' ), |
||
5 | animationControl = new Animation( { target: $target } ), |
||
6 | $control = animationControl.render(); |
||
7 | |||
8 | it( 'creates html', function() { |
||
9 | expect( !! $control.html().length ).toEqual( true ); |
||
10 | } ); |
||
11 | |||
12 | it( 'adds animation classes', function() { |
||
13 | $control.find( 'select' ).val( 'fadeOut' ).change(); |
||
14 | expect( $target.hasClass( 'wow' ) ).toEqual( true ); |
||
15 | } ); |
||
16 | |||
17 | it( 'presets sliders', function() { |
||
18 | expect( animationControl.delayControl.$input.val() ).toEqual( '0' ); |
||
19 | expect( animationControl.durationControl.$input.val() ).toEqual( '1.5' ); |
||
20 | } ); |
||
21 | |||
22 | } ); |
||
23 |