mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-21 12:55:22 +00:00
first tests
This commit is contained in:
37
tests/e2e/modules.js
Normal file
37
tests/e2e/modules.js
Normal file
@@ -0,0 +1,37 @@
|
||||
const jsdom = require("jsdom");
|
||||
const fetch = require("node-fetch");
|
||||
const helpers = require("./global-setup");
|
||||
let app = null;
|
||||
|
||||
describe("test headers", function () {
|
||||
beforeAll(function () {
|
||||
// todo: require is not defined ...
|
||||
// jest.mock("logger");
|
||||
app = helpers.startApplication("tests/configs/modules/display.js");
|
||||
// app = helpers.startApplication("config/config.js");
|
||||
});
|
||||
afterAll(function () {
|
||||
helpers.stopApplication(app);
|
||||
});
|
||||
|
||||
it("test", function (done) {
|
||||
jsdom.JSDOM.fromURL("http://localhost:8080", { resources: "usable", runScripts: "dangerously" }).then((dom) => {
|
||||
// console.log(dom.serialize());
|
||||
dom.window.onload = function () {
|
||||
const doc = dom.window.document;
|
||||
console.log(doc.querySelector("title").textContent);
|
||||
const children = doc.body.getElementsByTagName("*");
|
||||
for (var i = 0, length = children.length; i < length; i++) {
|
||||
child = children[i];
|
||||
if (child.id !== "") console.dir(child.id);
|
||||
}
|
||||
console.log(doc.querySelector("#module_0_helloworld .module-header").textContent);
|
||||
// result ist leider lowercase wegen fehlendem css, siehe https://stackoverflow.com/questions/10318330/how-do-you-add-stylesheets-to-jsdom
|
||||
// const elem = doc.getElementById("module_0_helloworld");
|
||||
// console.dir(elem);
|
||||
done();
|
||||
};
|
||||
});
|
||||
// done();
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user