mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
16 lines
502 B
JavaScript
16 lines
502 B
JavaScript
const deprecated = require("../../../js/deprecated");
|
|
|
|
describe("Deprecated", function () {
|
|
it("should be an object", function () {
|
|
expect(typeof deprecated).toBe("object");
|
|
});
|
|
|
|
it("should contain configs array with deprecated options as strings", function () {
|
|
expect(Array.isArray(["deprecated.configs"])).toBe(true);
|
|
for (let option of deprecated.configs) {
|
|
expect(typeof option).toBe("string");
|
|
}
|
|
expect(deprecated.configs).toEqual(expect.arrayContaining(["kioskmode"]));
|
|
});
|
|
});
|