Use project URL in fallback config (#3656)

This commit is contained in:
Kristjan ESPERANTO
2024-12-18 08:00:00 +01:00
committed by GitHub
parent 5232f46d44
commit 5b3b40da66
3 changed files with 16 additions and 15 deletions

View File

@@ -15,9 +15,9 @@ describe("Check configuration without modules", () => {
expect(elem.textContent).toContain("MagicMirror²");
});
it("shows the url of michael's website", async () => {
it("shows the project URL", async () => {
const elem = await helpers.waitForElement("#module_5_helloworld .module-content");
expect(elem).not.toBeNull();
expect(elem.textContent).toContain("www.michaelteeuw.nl");
expect(elem.textContent).toContain("https://magicmirror.builders/");
});
});