Skip to content

Commit 3e530e3

Browse files
Merge pull request TheOdinProject#341 from thatblindgeye/updatePalindromes
09_palindromes: update solution test file
2 parents 6bb8b13 + 045f1b0 commit 3e530e3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

09_palindromes/palindromes.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('palindromes', () => {
1919
test.skip('doesn\'t just always return true', () => {
2020
expect(palindromes('ZZZZ car, a man, a maracaz.')).toBe(false);
2121
});
22-
test('works with numbers in a string', () => {
22+
test.skip('works with numbers in a string', () => {
2323
expect(palindromes('rac3e3car')).toBe(true);
2424
});
2525
});

09_palindromes/solution/palindromes-solution.spec.js

+3
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,7 @@ describe('palindromes', () => {
2121
test("doesn't just always return true", () => {
2222
expect(palindromes('ZZZZ car, a man, a maraca.')).toBe(false);
2323
});
24+
test('works with numbers in a string', () => {
25+
expect(palindromes('rac3e3car')).toBe(true);
26+
});
2427
});

0 commit comments

Comments
 (0)