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