mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-03 20:13:05 -04:00
[fix] Handle spellcheck issues
This commit is contained in:
parent
fed4c86c7f
commit
f5a2c54198
3 changed files with 6 additions and 2 deletions
|
@ -13,7 +13,7 @@ planned for 2025-07-01
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- [config] Allow to change module order for final renderer (or dynamicaly with CSS): Feature `order` in config. (#3762)
|
- [config] Allow to change module order for final renderer (or dynamically with CSS): Feature `order` in config. (#3762)
|
||||||
- [clock] Added option 'disableNextEvent' to hide next sun event (#3769)
|
- [clock] Added option 'disableNextEvent' to hide next sun event (#3769)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -59,6 +59,7 @@
|
||||||
"Edgardos",
|
"Edgardos",
|
||||||
"Ekristoffe",
|
"Ekristoffe",
|
||||||
"elec",
|
"elec",
|
||||||
|
"eltociear",
|
||||||
"envcanada",
|
"envcanada",
|
||||||
"envsub",
|
"envsub",
|
||||||
"envsubst",
|
"envsubst",
|
||||||
|
@ -82,6 +83,7 @@
|
||||||
"fulldate",
|
"fulldate",
|
||||||
"fullday",
|
"fullday",
|
||||||
"fullscreen",
|
"fullscreen",
|
||||||
|
"geraki",
|
||||||
"Gevoelstemperatuur",
|
"Gevoelstemperatuur",
|
||||||
"GHSA",
|
"GHSA",
|
||||||
"ghsas",
|
"ghsas",
|
||||||
|
@ -143,6 +145,7 @@
|
||||||
"Midori",
|
"Midori",
|
||||||
"mirontoli",
|
"mirontoli",
|
||||||
"MISSINGLANG",
|
"MISSINGLANG",
|
||||||
|
"mixasgr",
|
||||||
"MMPM",
|
"MMPM",
|
||||||
"modernizr",
|
"modernizr",
|
||||||
"modulename",
|
"modulename",
|
||||||
|
@ -183,6 +186,7 @@
|
||||||
"rohitdharavath",
|
"rohitdharavath",
|
||||||
"Rosso",
|
"Rosso",
|
||||||
"rrule",
|
"rrule",
|
||||||
|
"savvadam",
|
||||||
"sdetweil",
|
"sdetweil",
|
||||||
"sendheaders",
|
"sendheaders",
|
||||||
"serveronly",
|
"serveronly",
|
||||||
|
|
|
@ -36,7 +36,7 @@ describe("Compliments module", () => {
|
||||||
await expect(doTest(["Hello There", "Good Evening", "Evening test"])).resolves.toBe(true);
|
await expect(doTest(["Hello There", "Good Evening", "Evening test"])).resolves.toBe(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("doesnt show evening compliments during the day when the other parts of day are not set", async () => {
|
it("doesn't show evening compliments during the day when the other parts of day are not set", async () => {
|
||||||
await helpers.startApplication("tests/configs/modules/compliments/compliments_evening.js", "01 Oct 2022 08:00:00 GMT");
|
await helpers.startApplication("tests/configs/modules/compliments/compliments_evening.js", "01 Oct 2022 08:00:00 GMT");
|
||||||
await expect(doTest([""], "attached")).resolves.toBe(true);
|
await expect(doTest([""], "attached")).resolves.toBe(true);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue