Reverting incorrectly committed tests

This commit is contained in:
billalp 2019-10-28 09:28:12 +00:00
parent 056e386b16
commit d263f16e07
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
const caesar = require('./caesar') const caesar = require('./caesar')
describe('caesar', function() { describe('caesar', function() {
xit('works with single letters', function() { it('works with single letters', function() {
expect(caesar('Y', 1)).toEqual('Z'); expect(caesar('A', 1)).toEqual('B');
}); });
it('works with words', function() { it('works with words', function() {