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
|
|
|
|
2017-07-24 22:08:12 +02:00
|
|
|
var app = null;
|
2017-03-10 17:52:40 -03:00
|
|
|
|
2017-07-24 22:08:12 +02:00
|
|
|
describe("Using helloworld", function () {
|
2017-09-25 20:52:27 -03:00
|
|
|
after(function () {
|
|
|
|
return helpers.stopApplication(app);
|
|
|
|
});
|
|
|
|
|
2017-07-24 22:08:12 +02:00
|
|
|
before(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
|
|
|
});
|
|
|
|
|
2020-05-11 22:22:32 +02:00
|
|
|
var 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
|
|
|
|
|
|
|
var position;
|
|
|
|
var className;
|
2020-05-02 10:39:09 +02:00
|
|
|
for (var idx in positions) {
|
2017-03-10 17:52:40 -03:00
|
|
|
position = positions[idx];
|
|
|
|
className = position.replace("_", ".");
|
2017-07-24 22:08:12 +02:00
|
|
|
it("show text in " + position, function () {
|
2021-02-06 23:52:44 +01:00
|
|
|
return app.client.$("." + className).then((result) => {
|
|
|
|
return result.getText("." + className).should.eventually.equal("Text in " + position);
|
2021-01-30 20:29:59 +01:00
|
|
|
});
|
2017-03-10 17:52:40 -03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|