@@ -16,31 +16,31 @@ describe('$plugin', function() {
1616 } ) ;
1717 } ) ;
1818
19- it ( '#enable should enable the typaahead ' , function ( ) {
19+ it ( '#enable should enable the typeahead ' , function ( ) {
2020 this . $input . typeahead ( 'disable' ) ;
2121 expect ( this . $input . typeahead ( 'isEnabled' ) ) . toBe ( false ) ;
2222
2323 this . $input . typeahead ( 'enable' ) ;
2424 expect ( this . $input . typeahead ( 'isEnabled' ) ) . toBe ( true ) ;
2525 } ) ;
2626
27- it ( '#disable should disable the typaahead ' , function ( ) {
27+ it ( '#disable should disable the typeahead ' , function ( ) {
2828 this . $input . typeahead ( 'enable' ) ;
2929 expect ( this . $input . typeahead ( 'isEnabled' ) ) . toBe ( true ) ;
3030
3131 this . $input . typeahead ( 'disable' ) ;
3232 expect ( this . $input . typeahead ( 'isEnabled' ) ) . toBe ( false ) ;
3333 } ) ;
3434
35- it ( '#activate should activate the typaahead ' , function ( ) {
35+ it ( '#activate should activate the typeahead ' , function ( ) {
3636 this . $input . typeahead ( 'deactivate' ) ;
3737 expect ( this . $input . typeahead ( 'isActive' ) ) . toBe ( false ) ;
3838
3939 this . $input . typeahead ( 'activate' ) ;
4040 expect ( this . $input . typeahead ( 'isActive' ) ) . toBe ( true ) ;
4141 } ) ;
4242
43- it ( '#activate should fail to activate the typaahead if disabled' , function ( ) {
43+ it ( '#activate should fail to activate the typeahead if disabled' , function ( ) {
4444 this . $input . typeahead ( 'deactivate' ) ;
4545 expect ( this . $input . typeahead ( 'isActive' ) ) . toBe ( false ) ;
4646 this . $input . typeahead ( 'disable' ) ;
@@ -49,7 +49,7 @@ describe('$plugin', function() {
4949 expect ( this . $input . typeahead ( 'isActive' ) ) . toBe ( false ) ;
5050 } ) ;
5151
52- it ( '#deactivate should deactivate the typaahead ' , function ( ) {
52+ it ( '#deactivate should deactivate the typeahead ' , function ( ) {
5353 this . $input . typeahead ( 'activate' ) ;
5454 expect ( this . $input . typeahead ( 'isActive' ) ) . toBe ( true ) ;
5555
0 commit comments