snapshot e2e

This commit is contained in:
Karsten Hassel
2021-06-09 00:19:43 +02:00
parent 67011c0c32
commit 0e14d3d6e8
19 changed files with 93 additions and 116 deletions

View File

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