blob: e2572fde803f23dde0768cf354ed9605e8f1c199 (
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
|
/* 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 { createStore, selectors, actions } from "../../utils/test-head";
jest.mock("../../utils/editor");
const { getActiveSearch } = selectors;
const threadFront = {
sourceContents: async () => ({
source: "function foo1() {\n const foo = 5; return foo;\n}",
contentType: "text/javascript",
}),
getSourceActorBreakpointPositions: async () => ({}),
getSourceActorBreakableLines: async () => [],
};
describe("navigation", () => {
it("navigation removes activeSearch 'file' value", async () => {
const { dispatch, getState } = createStore(threadFront);
dispatch(actions.setActiveSearch("file"));
expect(getActiveSearch(getState())).toBe("file");
await dispatch(actions.willNavigate("will-navigate"));
expect(getActiveSearch(getState())).toBe(null);
});
});
|