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

8 lines
245 B
JavaScript
Raw Normal View History

const SystemInformation = require("../../../js/systeminformation");
describe("SystemInformation", () => {
it("should output system information", async () => {
await expect(SystemInformation()).resolves.toContain("platform: linux");
});
});