Source code
Revision control
Copy as Markdown
Other Tools
/* Any copyright is dedicated to the Public Domain.
"use strict";
const {
Sort,
sortReducer,
} = require("resource://devtools/client/netmonitor/src/reducers/sort.js");
const {
SORT_BY,
} = require("resource://devtools/client/netmonitor/src/constants.js");
describe("sorting reducer", () => {
it("it should sort by sort type", () => {
const initialState = new Sort();
const action = {
type: SORT_BY,
sortType: "TimeWhen",
};
const expectedState = {
type: "TimeWhen",
ascending: true,
};
expect(expectedState).toEqual(sortReducer(initialState, action));
});
});