Add test e2e helloworld module with default config text.

This commit is contained in:
Rodrigo Ramírez Norambuena
2017-03-26 17:36:45 -03:00
parent 9285da6c12
commit daad8bca69
2 changed files with 54 additions and 7 deletions

View File

@@ -0,0 +1,31 @@
/* Magic Mirror
*
* Test config sample module hello world default config
*
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
var config = {
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
language: "en",
timeFormat: 24,
units: "metric",
electronOptions: {
webPreferences: {
nodeIntegration: true,
},
},
modules: [
{
module: "helloworld",
position: "bottom_bar"
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}