it('returns 1 when the set at the given key contains a member', () =>
    db.sismember('my-key', 2).then((reply) => {
      expect(reply).toBe(1)
    })
  )