From 1222acbb4b5ec4045a7aa980a23ab6c5b3edf9ad Mon Sep 17 00:00:00 2001
From: Isah Jacob <Isahjacob0@gmail.com>
Date: Sat, 29 Oct 2022 11:39:32 +0100
Subject: [PATCH] removed the skip method to be able to run multple test

---
 03_reverseString/reverseString.spec.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/03_reverseString/reverseString.spec.js b/03_reverseString/reverseString.spec.js
index 8adb887..b51c50e 100644
--- a/03_reverseString/reverseString.spec.js
+++ b/03_reverseString/reverseString.spec.js
@@ -5,14 +5,14 @@ describe('reverseString', () => {
     expect(reverseString('hello')).toEqual('olleh');
   });
 
-  test.skip('reverses multiple words', () => {
+  test('reverses multiple words', () => {
     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')
   })
-  test.skip('works with blank strings', () => {
+  test('works with blank strings', () => {
     expect(reverseString('')).toEqual('')
   })
 });