Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
const {
updateSelectedPage,
const {
uiReducer,
UiState,
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");
});