Beispiel #1
0
  it("should tell if state is changed", () => {
    const checkbox = new TriStateCheckbox(TristateState.on);

    checkbox.click();
    expect(checkbox.ischanged()).toBe(true);
  });