mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-29 12:39:45 +00:00
first PR for #2942 - added new electron tests for calendar which test new css classes from https://github.com/MichMich/MagicMirror/pull/2939 - moved some compliments tests from `e2e` to `electron` because of date mocking - removed mock stuff from compliments module
29 lines
472 B
JavaScript
29 lines
472 B
JavaScript
/* MagicMirror² Test config compliments with date type
|
|
*
|
|
* By Rejas
|
|
* MIT Licensed.
|
|
*/
|
|
let config = {
|
|
timeFormat: 12,
|
|
|
|
modules: [
|
|
{
|
|
module: "compliments",
|
|
position: "middle_center",
|
|
config: {
|
|
compliments: {
|
|
morning: [],
|
|
afternoon: [],
|
|
evening: [],
|
|
"....-01-01": ["Happy new year!"]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|