describe("PREVIOUS", () => {
    it("decrements the index by one", () => {
      const state = { index: 1, selectedMicroClusters: [1, 2, 3] };
      const newState = reducer(state, { type: PREVIOUS });
      expect(newState.index).toBe(0);