MagicMirror/tests/e2e/modules_position_spec.js

37 lines
1.0 KiB
JavaScript
Raw Normal View History

const helpers = require("./global-setup");
describe("Position of modules", function () {
helpers.setupTimeout(this);
2021-04-08 21:12:56 +02:00
let app = null;
describe("Using helloworld", function () {
2021-06-08 00:47:40 +02:00
afterAll(function () {
return helpers.stopApplication(app);
});
2021-06-08 00:47:40 +02:00
beforeAll(function () {
// Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/modules/positions.js";
return helpers
.startApplication({
args: ["js/electron.js"]
})
.then(function (startedApp) {
app = startedApp;
});
});
2021-04-08 21:12:56 +02:00
const positions = ["top_bar", "top_left", "top_center", "top_right", "upper_third", "middle_center", "lower_third", "bottom_left", "bottom_center", "bottom_right", "bottom_bar", "fullscreen_above", "fullscreen_below"];
2021-04-08 21:12:56 +02:00
for (const position of positions) {
const className = position.replace("_", ".");
it("should show text in " + position, function () {
2021-02-06 23:52:44 +01:00
return app.client.$("." + className).then((result) => {
2021-06-11 22:24:21 +02:00
return result.getText("." + className) === "Text in " + position;
2021-01-30 20:29:59 +01:00
});
});
}
});
});