blob: 22c18442386521095fd6d65d6040c1002d5f5e89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const {
updateSelectedPage,
} = require("resource://devtools/client/application/src/actions/ui.js");
const {
uiReducer,
UiState,
} = require("resource://devtools/client/application/src/reducers/ui-state.js");
add_task(async function () {
info("Test ui reducer: UPDATE_SELECTED_PAGE action");
const state = UiState();
const action = updateSelectedPage("foo");
const newState = uiReducer(state, action);
equal(newState.selectedPage, "foo");
});
|