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