-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only allow exact AT versions for recommended test plan versions #1087
Conversation
…robably primary test run options
…ress #792 * Add resolver for finding firstRequiredAtVersion for a RECOMMENDED TestPlanVersion, given an atId * Update tests * Fix graphql call when including "firstRequiredAtVersion" under "testPlanVersions" * Update description of firstRequiredAtVersion * Rename resolver
…anRun # Conflicts: # server/tests/integration/graphql.test.js
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Confirmed the minimum version selection isn't allowed, 1 more step along!
onSelect={exactOrMinimum => | ||
onSelect={exactOrMinimum => { | ||
if ( | ||
selectedTestPlanVersion.phase === |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
selectedTestPlanVersion.phase === | |
selectedTestPlanVersion?.phase === |
@@ -336,6 +342,7 @@ const ManageTestQueue = ({ | |||
}; | |||
|
|||
const onAtChange = e => { | |||
setShowMinimumAtVersionErrorMessage(false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: for consistency, can you move this a line below?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
haha ok, I'll grant you it's an improvement
This includes work to support #791 and #792. Includes the following changes: * #1055 * #1001 * #1065 * #1052 * #1087 * #1098 * #1092 * #1131 * #1124 --------- Co-authored-by: Howard Edwards <[email protected]> Co-authored-by: Paul Clue <[email protected]> Co-authored-by: alflennik <[email protected]>
Implements restrictions to prevent reports being created with a minimum AT version once the test plan version has reached the recommended phase.