2017-07-24 22:08:12 +02:00
|
|
|
const helpers = require("./global-setup");
|
|
|
|
const path = require("path");
|
|
|
|
const request = require("request");
|
|
|
|
|
|
|
|
const expect = require("chai").expect;
|
|
|
|
|
|
|
|
const describe = global.describe;
|
|
|
|
const it = global.it;
|
|
|
|
const beforeEach = global.beforeEach;
|
|
|
|
const afterEach = global.afterEach;
|
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
|
|
|
beforeEach(function () {
|
|
|
|
return helpers.startApplication({
|
|
|
|
args: ["js/electron.js"]
|
|
|
|
}).then(function (startedApp) { app = startedApp; })
|
2017-03-10 17:52:40 -03:00
|
|
|
});
|
|
|
|
|
2017-07-24 22:08:12 +02:00
|
|
|
afterEach(function () {
|
|
|
|
return helpers.stopApplication(app);
|
2017-03-10 17:52:40 -03:00
|
|
|
});
|
|
|
|
|
2017-07-24 22:08:12 +02:00
|
|
|
describe("Using helloworld", function () {
|
2017-03-10 17:52:40 -03:00
|
|
|
|
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";
|
|
|
|
});
|
|
|
|
|
|
|
|
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"];
|
|
|
|
|
|
|
|
var position;
|
|
|
|
var className;
|
|
|
|
for (idx in positions) {
|
|
|
|
position = positions[idx];
|
|
|
|
className = position.replace("_", ".");
|
2017-07-24 22:08:12 +02:00
|
|
|
it("show text in " + position, function () {
|
2017-03-10 17:52:40 -03:00
|
|
|
return app.client.waitUntilWindowLoaded()
|
|
|
|
.getText("." + className).should.eventually.equal("Text in " + position);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|