File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,17 +21,17 @@ describe('docblock', function() {
21
21
getDoclets = require ( '../docblock' ) . getDoclets ;
22
22
} ) ;
23
23
24
- it ( 'extacts single line doclets' , function ( ) {
24
+ it ( 'extracts single line doclets' , function ( ) {
25
25
expect ( getDoclets ( '@foo bar\n@bar baz' ) )
26
26
. toEqual ( { foo : 'bar' , bar : 'baz' } ) ;
27
27
} ) ;
28
28
29
- it ( 'extacts multi line doclets' , function ( ) {
29
+ it ( 'extracts multi line doclets' , function ( ) {
30
30
expect ( getDoclets ( '@foo bar\nbaz\n@bar baz' ) )
31
31
. toEqual ( { foo : 'bar\nbaz' , bar : 'baz' } ) ;
32
32
} ) ;
33
33
34
- it ( 'extacts boolean doclets' , function ( ) {
34
+ it ( 'extracts boolean doclets' , function ( ) {
35
35
expect ( getDoclets ( '@foo bar\nbaz\n@abc\n@bar baz' ) )
36
36
. toEqual ( { foo : 'bar\nbaz' , abc : true , bar : 'baz' } ) ;
37
37
} ) ;
You can’t perform that action at this time.
0 commit comments