Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: devtools/client/application/test/xpcshell/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
"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");
});