mirror of
https://github.com/MichMich/MagicMirror.git
synced 2026-04-27 00:02:08 +00:00
8 lines
245 B
JavaScript
8 lines
245 B
JavaScript
|
|
const SystemInformation = require("../../../js/systeminformation");
|
||
|
|
|
||
|
|
describe("SystemInformation", () => {
|
||
|
|
it("should output system information", async () => {
|
||
|
|
await expect(SystemInformation()).resolves.toContain("platform: linux");
|
||
|
|
});
|
||
|
|
});
|