mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
19 lines
536 B
JavaScript
19 lines
536 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(function () {
|
|
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!");
|
|
});
|
|
});
|
|
});
|