mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-09-14 08:07:01 +00:00
snapshot e2e
This commit is contained in:
@@ -30,12 +30,12 @@ describe("Display of modules", function () {
|
||||
|
||||
it("should show the test header", async () => {
|
||||
const elem = await app.client.$("#module_0_helloworld .module-header", 10000);
|
||||
return elem.getText("#module_0_helloworld .module-header").should.eventually.equal("TEST_HEADER");
|
||||
return (elem.getText("#module_0_helloworld .module-header") === "TEST_HEADER");
|
||||
});
|
||||
|
||||
it("should show no header if no header text is specified", async () => {
|
||||
const elem = await app.client.$("#module_1_helloworld .module-header", 10000);
|
||||
return elem.getText("#module_1_helloworld .module-header").should.eventually.equal(false);
|
||||
return (elem.getText("#module_1_helloworld .module-header") === false);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user