summaryrefslogtreecommitdiffstats
path: root/devtools/client/application/test/xpcshell/test_page_reducer.js
blob: 9aecfc67bb787fe56c1118c724494fa0c72c88c4 (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 {
  updateDomain,
} = require("resource://devtools/client/application/src/actions/page.js");

const {
  pageReducer,
  PageState,
} = require("resource://devtools/client/application/src/reducers/page-state.js");

add_task(async function () {
  info("Test page reducer: UPDATE_DOMAIN action");
  const state = PageState();
  const action = updateDomain("https://example.com/foo/#bar");

  const newState = pageReducer(state, action);
  equal(newState.domain, "example.com");
});