Files
MagicMirror/tests/unit/classes/systeminformation_spec.js
T

8 lines
245 B
JavaScript
Raw Normal View History

2026-04-01 12:35:16 +02:00
const SystemInformation = require("../../../js/systeminformation");
describe("SystemInformation", () => {
it("should output system information", async () => {
await expect(SystemInformation()).resolves.toContain("platform: linux");
});
});