mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
59 lines
1.4 KiB
JavaScript
59 lines
1.4 KiB
JavaScript
const jsdom = require("jsdom");
|
|
|
|
exports.startApplication = function (configFilename, exec) {
|
|
jest.resetModules();
|
|
if (global.app) {
|
|
global.app.stop();
|
|
}
|
|
// Set config sample for use in test
|
|
if (configFilename === "") {
|
|
process.env.MM_CONFIG_FILE = "config/config.js";
|
|
} else {
|
|
process.env.MM_CONFIG_FILE = configFilename;
|
|
}
|
|
if (exec) exec;
|
|
global.app = require("app.js");
|
|
global.app.start();
|
|
};
|
|
|
|
exports.stopApplication = function () {
|
|
if (global.app) {
|
|
global.app.stop();
|
|
}
|
|
};
|
|
|
|
exports.getDocument = function (callback, ms) {
|
|
if (!ms || ms < 1000) ms = 1000;
|
|
const url = "http://" + (config.address || "localhost") + ":" + (config.port || "8080");
|
|
jsdom.JSDOM.fromURL(url, { resources: "usable", runScripts: "dangerously" }).then((dom) => {
|
|
dom.window.name = "jsdom";
|
|
dom.window.onload = function () {
|
|
global.MutationObserver = dom.window.MutationObserver;
|
|
global.document = dom.window.document;
|
|
setTimeout(() => {
|
|
callback();
|
|
}, ms);
|
|
};
|
|
});
|
|
};
|
|
|
|
exports.waitForElement = function(selector) {
|
|
return new Promise(resolve => {
|
|
if (document.querySelector(selector)) {
|
|
return resolve(document.querySelector(selector));
|
|
}
|
|
|
|
const observer = new MutationObserver(() => {
|
|
if (document.querySelector(selector)) {
|
|
resolve(document.querySelector(selector));
|
|
observer.disconnect();
|
|
}
|
|
});
|
|
|
|
observer.observe(document.body, {
|
|
childList: true,
|
|
subtree: true
|
|
});
|
|
});
|
|
};
|