run prettier

This commit is contained in:
karsten13
2021-06-11 22:24:21 +02:00
parent 044935a164
commit 1a244726aa
21 changed files with 41 additions and 85 deletions

View File

@@ -27,7 +27,7 @@ describe("Test helloworld module", function () {
it("Test message helloworld module", async function () {
const elem = await app.client.$(".helloworld");
return (elem.getText(".helloworld") === "Test HelloWorld Module");
return elem.getText(".helloworld") === "Test HelloWorld Module";
});
});
@@ -39,7 +39,7 @@ describe("Test helloworld module", function () {
it("Test message helloworld module", async function () {
const elem = await app.client.$(".helloworld");
return (elem.getText(".helloworld") === "Hello World!");
return elem.getText(".helloworld") === "Hello World!";
});
});
});