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