Source code

Revision control

Copy as Markdown

Other Tools

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