8000 Merge pull request #81 from Musabii/patch-1 · devkonz/javascript-exercises@704a0f1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 704a0f1

Browse files
authored
Merge pull request TheOdinProject#81 from Musabii/patch-1
added a test and changed an old one
2 parents 4e004bd + 4d82ea1 commit 704a0f1
8000

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

palindromes/palindromes.spec.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ describe('palindromes', function() {
44
it('works with single words', function() {
55
expect(palindromes('racecar')).toEqual(true);
66
});
7-
xit('works with punctuation', function() {
7+
xit('works with punctuation ', function() {
8+
expect(palindromes('racecar!')).toEqual(true);
9+
});
10+
xit('works with upper-case letters ', function() {
811
expect(palindromes('Racecar!')).toEqual(true);
912
});
1013
xit('works with multiple words', function() {

0 commit comments

Comments
 (0)
0