describe('when a key does not exist', () => {
    it('returns 1', () =>
      db.incr('does-not-exist').then((reply) => {
        expect(reply).toBe(1)
      })