remove timer and simon

This commit is contained in:
Cody Loyd
2017-12-15 12:56:14 -06:00
parent 14cc7d40bd
commit 834d78b8b2
2928 changed files with 303453 additions and 313 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
var reverseString = function() {
var reverseString = function(string) {
return string.split('').reverse().join('')
}
module.exports = reverseString
module.exports = reverseString
+3 -3
View File
@@ -5,11 +5,11 @@ describe('Hello World', function() {
expect(reverseString('hello')).toEqual('olleh');
});
xit('reverses multiple words', function() {
it('reverses multiple words', function() {
expect(reverseString('hello there')).toEqual('ereht olleh')
})
xit('works with numbers and punctuation', function() {
it('works with numbers and punctuation', function() {
expect(reverseString('123! abc!')).toEqual('!cba !321')
})
});
});