summaryrefslogtreecommitdiff
path: root/spec/frontend/sidebar/issuable_assignees_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/sidebar/issuable_assignees_spec.js')
-rw-r--r--spec/frontend/sidebar/issuable_assignees_spec.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/frontend/sidebar/issuable_assignees_spec.js b/spec/frontend/sidebar/issuable_assignees_spec.js
index aa930bd4198..076616de040 100644
--- a/spec/frontend/sidebar/issuable_assignees_spec.js
+++ b/spec/frontend/sidebar/issuable_assignees_spec.js
@@ -13,7 +13,6 @@ describe('IssuableAssignees', () => {
propsData: { ...props },
});
};
- const findLabel = () => wrapper.find('[data-testid="assigneeLabel"');
const findUncollapsedAssigneeList = () => wrapper.find(UncollapsedAssigneeList);
const findEmptyAssignee = () => wrapper.find('[data-testid="none"]');
@@ -30,10 +29,6 @@ describe('IssuableAssignees', () => {
it('renders "None"', () => {
expect(findEmptyAssignee().text()).toBe('None');
});
-
- it('renders "0 assignees"', () => {
- expect(findLabel().text()).toBe('0 Assignees');
- });
});
describe('when assignees are present', () => {
@@ -42,18 +37,5 @@ describe('IssuableAssignees', () => {
expect(findUncollapsedAssigneeList().exists()).toBe(true);
});
-
- it.each`
- assignees | expected
- ${[{ id: 1 }]} | ${'Assignee'}
- ${[{ id: 1 }, { id: 2 }]} | ${'2 Assignees'}
- `(
- 'when assignees have a length of $assignees.length, it renders $expected',
- ({ assignees, expected }) => {
- createComponent({ users: assignees });
-
- expect(findLabel().text()).toBe(expected);
- },
- );
});
});