mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
const helpers = require("./global-setup");
|
|
|
|
const describe = global.describe;
|
|
const it = global.it;
|
|
|
|
describe("Display of modules", function () {
|
|
helpers.setupTimeout(this);
|
|
|
|
var app = null;
|
|
|
|
beforeEach(function () {
|
|
return helpers
|
|
.startApplication({
|
|
args: ["js/electron.js"]
|
|
})
|
|
.then(function (startedApp) {
|
|
app = startedApp;
|
|
});
|
|
});
|
|
|
|
afterEach(function () {
|
|
return helpers.stopApplication(app);
|
|
});
|
|
|
|
describe("Using helloworld", function () {
|
|
before(function () {
|
|
// Set config sample for use in test
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/display.js";
|
|
});
|
|
|
|
it("should show the test header", async () => {
|
|
await app.client.waitForExist("#module_0_helloworld", 10000);
|
|
return app.client.element("#module_0_helloworld .module-header").isVisible().should.eventually.equal(true).getText("#module_0_helloworld .module-header").should.eventually.equal("TEST_HEADER");
|
|
});
|
|
|
|
it("should show no header if no header text is specified", async () => {
|
|
await app.client.waitForExist("#module_1_helloworld", 10000);
|
|
return app.client.element("#module_1_helloworld .module-header").isVisible().should.eventually.equal(false);
|
|
});
|
|
});
|
|
});
|