aboutsummaryrefslogtreecommitdiff
path: root/test/shared/settings/Properties.test.ts
blob: 6007e84fc6ddb57460c029bb7c3d2d7a19bb72f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import Properties from "../../../src/shared/settings/Properties";
import { expect } from "chai";

describe("Properties", () => {
  describe("#propertiesValueOf", () => {
    it("returns with default properties by empty settings", () => {
      const props = Properties.fromJSON({});
      expect(props).to.deep.equal({
        hintchars: "abcdefghijklmnopqrstuvwxyz",
        smoothscroll: false,
        complete: "sbh",
      });
    });

    it("returns properties by valid settings", () => {
      const props = Properties.fromJSON({
        hintchars: "abcdefgh",
        smoothscroll: false,
        complete: "sbh",
      });

      expect(props).to.deep.equal({
        hintchars: "abcdefgh",
        smoothscroll: false,
        complete: "sbh",
      });
    });
  });
});