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