2021-09-25 23:37:37 +02:00
|
|
|
const helpers = require("../global-setup");
|
|
|
|
|
|
|
|
describe("Alert module", function () {
|
|
|
|
beforeAll(function (done) {
|
2021-09-25 23:45:34 +02:00
|
|
|
helpers.startApplication("tests/configs/modules/alert/default.js");
|
2021-09-25 23:37:37 +02:00
|
|
|
helpers.getDocument(done, 1000);
|
|
|
|
});
|
|
|
|
afterAll(function () {
|
2021-09-25 23:45:34 +02:00
|
|
|
helpers.stopApplication();
|
2021-09-25 23:37:37 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should show the welcome message", function () {
|
|
|
|
const elem = document.querySelector(".ns-box .ns-box-inner .light.bright.small");
|
|
|
|
expect(elem).not.toBe(null);
|
|
|
|
expect(elem.textContent).toContain("Welcome, start was successful!");
|
|
|
|
});
|
|
|
|
});
|