2021-07-14 00:12:59 +02:00

22 lines
432 B
JavaScript

/* Magic Mirror Test config for analog clock face
*
* MIT Licensed.
*/
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
modules: [
{
module: "clock",
position: "middle_center",
config: {
displayType: "analog",
analogFace: "face-006"
}
}
]
});
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}