@@ -23,41 +23,41 @@ describe('#translate', function() {
23
23
expect ( s ) . toEqual ( 'appleay' ) ;
24
24
} ) ;
25
25
26
- it ( 'translates a word beginning with a consonant' , function ( ) {
26
+ xit ( 'translates a word beginning with a consonant' , function ( ) {
27
27
s = pigLatin . translate ( "banana" ) ;
28
28
expect ( s ) . toEqual ( "ananabay" ) ;
29
29
} ) ;
30
30
31
- it ( 'translates a word beginning with two consonants' , function ( ) {
31
+ xit ( 'translates a word beginning with two consonants' , function ( ) {
32
32
s = pigLatin . translate ( "cherry" ) ;
33
33
expect ( s ) . toEqual ( 'errychay' ) ;
34
34
} ) ;
35
35
36
- it ( 'translates two words' , function ( ) {
36
+ xit ( 'translates two words' , function ( ) {
37
37
s = pigLatin . translate ( "eat pie" ) ;
38
38
expect ( s ) . toEqual ( 'eatay iepay' ) ;
39
39
} ) ;
40
40
41
- it ( 'translates a word beginning with three consonants' , function ( ) {
41
+ xit ( 'translates a word beginning with three consonants' , function ( ) {
42
42
expect ( pigLatin . translate ( "three" ) ) . toEqual ( "eethray" ) ;
43
43
} ) ;
44
44
45
- it ( 'counts "sch" as a single phoneme' , function ( ) {
45
+ xit ( 'counts "sch" as a single phoneme' , function ( ) {
46
46
s = pigLatin . translate ( "school" ) ;
47
47
expect ( s ) . toEqual ( "oolschay" ) ;
48
48
} ) ;
49
49
50
- it ( 'counts "qu" as a single phoneme' , function ( ) {
50
+ xit ( 'counts "qu" as a single phoneme' , function ( ) {
51
51
s = pigLatin . translate ( "quiet" ) ;
52
52
expect ( s ) . toEqual ( "ietquay" ) ;
53
53
} ) ;
54
54
55
- it ( 'counts "qu" as a consonant even when its preceded by a consonant' , function ( ) {
55
+ xit ( 'counts "qu" as a consonant even when its preceded by a consonant' , function ( ) {
56
56
s = pigLatin . translate ( "square" ) ;
57
57
expect ( s ) . toEqual ( "aresquay" ) ;
58
58
} ) ;
59
59
60
- it ( 'translates many words' , function ( ) {
60
+ xit ( 'translates many words' , function ( ) {
61
61
s = pigLatin . translate ( "the quick brown fox" ) ;
62
62
expect ( s ) . toEqual ( "ethay ickquay ownbray oxfay" ) ;
63
63
} ) ;
0 commit comments