blob: 0be451429f1e165f4cd19276e0ad80ff30c8cf4e (
plain)
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
30
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
import { prefs } from "../../utils/prefs";
import update, { initialUIState } from "../ui";
describe("ui reducer", () => {
it("toggle framework grouping to false", () => {
const state = initialUIState();
const value = false;
const updatedState = update(state, {
type: "TOGGLE_FRAMEWORK_GROUPING",
value,
});
expect(updatedState.frameworkGroupingOn).toBe(value);
expect(prefs.frameworkGroupingOn).toBe(value);
});
it("toggle framework grouping to true", () => {
const state = initialUIState();
const value = true;
const updatedState = update(state, {
type: "TOGGLE_FRAMEWORK_GROUPING",
value,
});
expect(updatedState.frameworkGroupingOn).toBe(value);
expect(prefs.frameworkGroupingOn).toBe(value);
});
});
|