it("should return probe message", () => {
    const probe = () => Promise.resolve("blblbl");

    return new Probe(probe, { timeout: 10 }).run().then(result => {
      expect(result).toEqual("blblbl");