8000 Change all but the first spec to pending · NoderCoder/javascript-exercises@4a70d98 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4a70d98

Browse files
Change all but the first spec to pending
1 parent f3ac3d5 commit 4a70d98

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pig_latin/pigLatin.spec.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,41 +23,41 @@ describe('#translate', function() {
2323
expect(s).toEqual('appleay');
2424
});
2525

26-
it('translates a word beginning with a consonant', function() {
26+
xit('translates a word beginning with a consonant', function() {
2727
s = pigLatin.translate("banana");
2828
expect(s).toEqual("ananabay");
2929
});
3030

31-
it('translates a word beginning with two consonants', function() {
31+
xit('translates a word beginning with two consonants', function() {
3232
s = pigLatin.translate("cherry");
3333
expect(s).toEqual('errychay');
3434
});
3535

36-
it('translates two words', function() {
36+
xit('translates two words', function() {
3737
s = pigLatin.translate("eat pie");
3838
expect(s).toEqual('eatay iepay');
3939
});
4040

41-
it('translates a word beginning with three consonants', function() {
41+
xit('translates a word beginning with three consonants', function() {
4242
expect(pigLatin.translate("three")).toEqual("eethray");
4343
});
4444

45-
it('counts "sch" as a single phoneme', function() {
45+
xit('counts "sch" as a single phoneme', function() {
4646
s = pigLatin.translate("school");
4747
expect(s).toEqual("oolschay");
4848
});
4949

50-
it('counts "qu" as a single phoneme', function() {
50+
xit('counts "qu" as a single phoneme', function() {
5151
s = pigLatin.translate("quiet");
5252
expect(s).toEqual("ietquay");
5353
});
5454

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() {
5656
s = pigLatin.translate("square");
5757
expect(s).toEqual("aresquay");
5858
});
5959

60-
it('translates many words', function() {
60+
xit('translates many words', function() {
6161
s = pigLatin.translate("the quick brown fox");
6262
expect(s).toEqual("ethay ickquay ownbray oxfay");
6363
});

0 commit comments

Comments
 (0)
0