update module clock

This commit is contained in:
Karsten Hassel
2021-09-26 21:58:59 +02:00
parent 385e5aabaa
commit a4a8504558
12 changed files with 169 additions and 155 deletions

View File

@@ -11,7 +11,7 @@ describe("Test helloworld module", function () {
helpers.getDocument(done, 1000);
});
it("Test message helloworld module", async function () {
it("Test message helloworld module", function () {
const elem = document.querySelector(".helloworld");
expect(elem).not.toBe(null);
expect(elem.textContent).toContain("Test HelloWorld Module");
@@ -24,7 +24,7 @@ describe("Test helloworld module", function () {
helpers.getDocument(done, 1000);
});
it("Test message helloworld module", async function () {
it("Test message helloworld module", function () {
const elem = document.querySelector(".helloworld");
expect(elem).not.toBe(null);
expect(elem.textContent).toContain("Hello World!");