Merge pull request #1 from BillalPatel/caeser

Reverting incorrectly committed tests
This commit is contained in:
Billal Patel 2019-10-28 09:29:08 +00:00 committed by GitHub
commit 4db0a95185
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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