summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/node/reducers/sort.spec.js
blob: 4afd7c0fe30528c7ea1318cab1116f1385791eaf (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"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));
  });
});