-
Notifications
You must be signed in to change notification settings - Fork 18
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
Added the test cases for adding assignee in issue on jira through slash command. #149
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,60 @@ | ||||||
--- | ||||||
# (Required) Ensure all values are filled up | ||||||
name: "Assign a Jira issue to a user through slash command." | ||||||
status: Active | ||||||
priority: Normal | ||||||
folder: Jira-assign | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
authors: "@arush-vashishtha" | ||||||
team_ownership: [] | ||||||
priority_p1_to_p4: P2 - Core Functions (Do core functions work?) | ||||||
|
||||||
# (Optional) | ||||||
location: null | ||||||
component: null | ||||||
tags: [] | ||||||
labels: [] | ||||||
tested_by_contributor: null | ||||||
|
||||||
# (Optional) Test type and tools | ||||||
cypress: null | ||||||
detox: null | ||||||
mmctl: null | ||||||
playwright: null | ||||||
rainforest: [] | ||||||
manual_test_environments: [] | ||||||
|
||||||
# Do not change | ||||||
id: null | ||||||
key: null | ||||||
created_on: null | ||||||
last_updated: null | ||||||
case_hashed: null | ||||||
steps_hashed: null | ||||||
--- | ||||||
|
||||||
**Step 1** | ||||||
|
||||||
1. Run the `/jira assign` and add the desired issue key in the slash command in the channel on MM. | ||||||
2. Add the MM username in the <assignee> in above command followed by a `@` when the user's MM account is connected to jira account. | ||||||
|
||||||
**Step 2** | ||||||
|
||||||
1. Run the `/jira assign` and add the desired issue key in the slash command in the channel on MM. | ||||||
2. Add the MM username in the <assignee> in above command not followed by a `@` when the user's MM account is connected or disconnected to jira account. | ||||||
|
||||||
**Step 3** | ||||||
|
||||||
1. Run the `/jira assign` and add the desired issue key in the slash command in the channel on MM. | ||||||
2. Add the MM username in the <assignee> in above command when the user's MM account is disconnected to jira account. | ||||||
|
||||||
**Step 4** | ||||||
|
||||||
1. Run the `/jira assign` and add the desired issue key in the slash command in the channel on MM. | ||||||
2. Add the jira username in the <assignee> in above command not followed by a `@` when the user's MM account is connected or disconnected to their jira account. | ||||||
|
||||||
**Expected** | ||||||
|
||||||
The user should get suggestions while entering MM user name and the assginee should get added to the issue on Jira. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
After step 2, the user should not get any suggestion while entering MM user name and they should receive the error message that no assignee found for MM user name. | ||||||
After step 3, the user with MM user name should not get assigned to the issue on jira. | ||||||
After step 4, the user with jira user name should get assigned to the issue on jira. | ||||||
Comment on lines
+58
to
+60
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please organize the step/expected format following the comment here - #161 (review) |
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.