Update reverseString.spec.js

This commit is contained in:
Jonathan Mari 2023-10-12 21:00:31 -04:00 committed by GitHub
parent 157972d135
commit f01face964
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -5,14 +5,14 @@ describe('reverseString', () => {
expect(reverseString('hello')).toEqual('olleh'); expect(reverseString('hello')).toEqual('olleh');
}); });
test.skip('reverses multiple words', () => { test('reverses multiple words', () => {
expect(reverseString('hello there')).toEqual('ereht olleh') expect(reverseString('hello there')).toEqual('ereht olleh')
}) })
test.skip('works with numbers and punctuation', () => { test('works with numbers and punctuation', () => {
expect(reverseString('123! abc!')).toEqual('!cba !321') expect(reverseString('123! abc!')).toEqual('!cba !321')
}) })
test.skip('works with blank strings', () => { test('works with blank strings', () => {
expect(reverseString('')).toEqual('') expect(reverseString('')).toEqual('')
}) })
}); });