Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
136eedcf
Commit
136eedcf
authored
May 22, 2017
by
Luke "Jared" Bennett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix issues/form_spec failure
parent
b409ae79
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
spec/features/issues/form_spec.rb
spec/features/issues/form_spec.rb
+7
-2
No files found.
spec/features/issues/form_spec.rb
View file @
136eedcf
...
...
@@ -184,8 +184,13 @@ describe 'New/edit issue', :feature, :js do
click_link
user2
.
name
end
expect
(
find
(
'input[name="issue[assignee_ids][]"]'
,
visible:
false
).
value
).
to
match
(
user2
.
id
.
to_s
)
expect
(
find
(
'.dropdown-menu-user a.is-active'
).
first
(
:xpath
,
'..'
)[
'data-user-id'
]).
to
eq
(
user2
.
id
.
to_s
)
expect
(
page
.
all
(
'input[name="issue[assignee_ids][]"]'
,
visible:
false
)[
0
].
value
).
to
match
(
user
.
id
.
to_s
)
expect
(
page
.
all
(
'input[name="issue[assignee_ids][]"]'
,
visible:
false
)[
1
].
value
).
to
match
(
user2
.
id
.
to_s
)
expect
(
page
.
all
(
'.dropdown-menu-user a.is-active'
).
length
).
to
eq
(
2
)
expect
(
page
.
all
(
'.dropdown-menu-user a.is-active'
)[
0
].
first
(
:xpath
,
'..'
)[
'data-user-id'
]).
to
eq
(
user
.
id
.
to_s
)
expect
(
page
.
all
(
'.dropdown-menu-user a.is-active'
)[
1
].
first
(
:xpath
,
'..'
)[
'data-user-id'
]).
to
eq
(
user2
.
id
.
to_s
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment