mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
20 lines
539 B
JavaScript
20 lines
539 B
JavaScript
const helpers = require("../global-setup");
|
|
|
|
describe("Alert module", () => {
|
|
beforeAll((done) => {
|
|
helpers.startApplication("tests/configs/modules/alert/default.js");
|
|
helpers.getDocument(done);
|
|
});
|
|
afterAll(async () => {
|
|
await helpers.stopApplication();
|
|
});
|
|
|
|
it("should show the welcome message", (done) => {
|
|
helpers.waitForElement(".ns-box .ns-box-inner .light.bright.small").then((elem) => {
|
|
done();
|
|
expect(elem).not.toBe(null);
|
|
expect(elem.textContent).toContain("Welcome, start was successful!");
|
|
});
|
|
});
|
|
});
|