it("should call selectPossible", async () => {
      const actionObject = actions.find((action) => action.value === "selectPossible");
      await actionObject.getActionCall({ app, qStateName, field })();
      expect(app.getField).toHaveBeenCalledWith(field, qStateName);
      expect(fieldObject.selectPossible).toHaveBeenCalledWith(false);