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