We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50940a commit 986cfacCopy full SHA for 986cfac
tests/e2e/modules/clock_spec.js
@@ -38,6 +38,13 @@ describe("Clock module", () => {
38
const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[ap]m$/;
39
await expect(helpers.testMatch(".clock .time", timeRegex)).resolves.toBe(true);
40
});
41
+
42
+ it("check for discreet elements of clock", async () => {
43
+ let elemClock = helpers.waitForElement(".clock-hour-digital");
44
+ await expect(elemClock).not.toBeNull();
45
+ elemClock = helpers.waitForElement(".clock-minute-digital");
46
47
+ });
48
49
50
describe("with showPeriodUpper config enabled", () => {
0 commit comments