8000 Merge pull request #29 from leila-alderman/patch-2 · NoderCoder/javascript-exercises@6e0c5cd · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6e0c5cd

Browse files
authored
Merge pull request TheOdinProject#29 from leila-alderman/patch-2
Change all but the first spec to pending
2 parents 03d7ecf + 4a70d98 commit 6e0c5cd

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