8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6043af5 commit f571f3bCopy full SHA for f571f3b
03_reverseString/reverseString.spec.js
@@ -5,14 +5,14 @@ describe('reverseString', () => {
5
expect(reverseString('hello')).toEqual('olleh');
6
});
7
8
- test.skip('reverses multiple words', () => {
+ test('reverses multiple words', () => {
9
expect(reverseString('hello there')).toEqual('ereht olleh')
10
})
11
12
- test.skip('works with numbers and punctuation', () => {
+ test('works with numbers and punctuation', () => {
13
expect(reverseString('123! abc!')).toEqual('!cba !321')
14
15
- test.skip('works with blank strings', () => {
+ test('works with blank strings', () => {
16
expect(reverseString('')).toEqual('')
17
18
0 commit comments