import test from "ava";
import htmlToAbsUrls from "../HtmlToAbsoluteUrls.js";
test("Changes a link href", async t => {
t.is((await htmlToAbsUrls(`Hello`, "http://example.com/")).html, `Hello`);
t.is((await htmlToAbsUrls(`Hello`, "http://example.com/")).html, `Hello`);
t.is((await htmlToAbsUrls(``, "http://example.com/")).html, ``);
t.is((await htmlToAbsUrls(`Hello`, "http://example.com/")).html, `Hello`);
});