Skip to content

Commit 045f1b0

Browse files
committed
Update solutions file for palindrome
1 parent 34d63cc commit 045f1b0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Diff for: 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
});

Diff for: 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)