Revert "Merge branch 'jest'"

This reverts commit f76e9e108f.
This commit is contained in:
Marvin Gay
2021-05-12 21:47:42 -04:00
parent f76e9e108f
commit ad1c0c407f
45 changed files with 217 additions and 6166 deletions
+5 -5
View File
@@ -1,18 +1,18 @@
const reverseString = require('./reverseString')
describe('reverseString', () => {
test('reverses single word', () => {
describe('reverseString', function() {
it('reverses single word', function() {
expect(reverseString('hello')).toEqual('olleh');
});
test.skip('reverses multiple words', () => {
xit('reverses multiple words', function() {
expect(reverseString('hello there')).toEqual('ereht olleh')
})
test.skip('works with numbers and punctuation', () => {
xit('works with numbers and punctuation', function() {
expect(reverseString('123! abc!')).toEqual('!cba !321')
})
test.skip('works with blank strings', () => {
xit('works with blank strings', function() {
expect(reverseString('')).toEqual('')
})
});