first tests

This commit is contained in:
karsten13
2021-09-21 23:48:29 +02:00
parent c3c5307624
commit b4350278a0
5 changed files with 59 additions and 8 deletions

View File

@@ -3,7 +3,13 @@
* By Rejas
* MIT Licensed.
*/
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
let config = {
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
language: "en",
timeFormat: 24,
units: "metric",
modules: [
{
module: "helloworld",
@@ -21,11 +27,7 @@ let config = require(process.cwd() + "/tests/configs/default.js").configFactory(
}
}
]
});
config.electronOptions.fullscreen = false;
config.electronOptions.width = 800;
config.electronOptions.height = 600;
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {