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

8 lines
218 B
JavaScript
Raw Normal View History

2023-04-04 20:44:32 +02:00
const Utils = require("../../../js/utils");
2018-02-10 12:30:33 +01:00
2023-01-01 18:09:08 +01:00
describe("Utils", () => {
2024-01-16 21:54:55 +01:00
it("should output system information", async () => {
await expect(Utils.logSystemInformation()).resolves.toContain("platform: linux");
2018-02-10 12:30:33 +01:00
});
});