MagicMirror/tests/e2e/modules/alert_spec.js

19 lines
548 B
JavaScript

const helpers = require("../global-setup");
describe("Alert module", function () {
beforeAll(function (done) {
helpers.startApplication("tests/configs/modules/alert/default.js");
helpers.getDocument(done);
});
afterAll(async function () {
await helpers.stopApplication();
});
it("should show the welcome message", function () {
helpers.waitForElement(".ns-box .ns-box-inner .light.bright.small").then((elem) => {
expect(elem).not.toBe(null);
expect(elem.textContent).toContain("Welcome, start was successful!");
});
});
});