Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/work_items/components/work_item_assignees_spec.js')
-rw-r--r--spec/frontend/work_items/components/work_item_assignees_spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/frontend/work_items/components/work_item_assignees_spec.js b/spec/frontend/work_items/components/work_item_assignees_spec.js
index ff1998ab2ed..50a8847032e 100644
--- a/spec/frontend/work_items/components/work_item_assignees_spec.js
+++ b/spec/frontend/work_items/components/work_item_assignees_spec.js
@@ -107,7 +107,7 @@ describe('WorkItemAssignees component', () => {
it('container does not have shadow by default', () => {
createComponent();
- expect(findTokenSelector().props('containerClass')).toBe('gl-shadow-none!');
+ expect(findTokenSelector().props('containerClass')).toContain('gl-shadow-none!');
});
it('container has shadow after focusing token selector', async () => {
@@ -415,7 +415,7 @@ describe('WorkItemAssignees component', () => {
findTokenSelector().vm.$emit('input', dropdownItems);
await nextTick();
- expect(findTokenSelector().props('containerClass')).toBe('gl-shadow-none!');
+ expect(findTokenSelector().props('containerClass')).toContain('gl-shadow-none!');
});
it('calls the mutation for updating assignees with the correct input', async () => {