2017-07-24 22:08:12 +02:00
|
|
|
const helpers = require("./global-setup");
|
|
|
|
|
|
|
|
const describe = global.describe;
|
|
|
|
const it = global.it;
|
2017-03-10 17:52:40 -03:00
|
|
|
|
|
|
|
describe("Position of modules", function () {
|
2017-07-24 22:08:12 +02:00
|
|
|
helpers.setupTimeout(this);
|
2017-03-10 17:52:40 -03:00
|
|
|
|
2021-04-08 21:12:56 +02:00
|
|
|
let app = null;
|
2017-03-10 17:52:40 -03:00
|
|
|
|
2017-07-24 22:08:12 +02:00
|
|
|
describe("Using helloworld", function () {
|
2021-06-08 00:47:40 +02:00
|
|
|
afterAll(function () {
|
2017-09-25 20:52:27 -03:00
|
|
|
return helpers.stopApplication(app);
|
|
|
|
});
|
|
|
|
|
2021-06-08 00:47:40 +02:00
|
|
|
beforeAll(function () {
|
2017-03-10 17:52:40 -03:00
|
|
|
// Set config sample for use in test
|
|
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/positions.js";
|
2020-05-11 22:22:32 +02:00
|
|
|
return helpers
|
|
|
|
.startApplication({
|
|
|
|
args: ["js/electron.js"]
|
|
|
|
})
|
|
|
|
.then(function (startedApp) {
|
|
|
|
app = startedApp;
|
|
|
|
});
|
2017-03-10 17:52:40 -03:00
|
|
|
});
|
|
|
|
|
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"];
|
2017-03-10 17:52:40 -03:00
|
|
|
|
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-09 00:19:43 +02:00
|
|
|
return (result.getText("." + className) === "Text in " + position);
|
2021-01-30 20:29:59 +01:00
|
|
|
});
|
2017-03-10 17:52:40 -03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|