describe("FciQtspFilledDocumentReducer", () => {
  it("The initial state should be a pot.none", () => {
    const globalState = appReducer(undefined, applicationChangeState("active"));
    expect(globalState.features.fci.qstpFilledDocument).toStrictEqual(pot.none);
  });