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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
410e2235
Commit
410e2235
authored
Dec 15, 2016
by
Clement Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix search autocomplete jasmine test
parent
f7b63611
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
spec/javascripts/search_autocomplete_spec.js
spec/javascripts/search_autocomplete_spec.js
+4
-2
No files found.
spec/javascripts/search_autocomplete_spec.js
View file @
410e2235
...
@@ -11,6 +11,7 @@
...
@@ -11,6 +11,7 @@
(
function
()
{
(
function
()
{
var
addBodyAttributes
,
assertLinks
,
dashboardIssuesPath
,
dashboardMRsPath
,
groupIssuesPath
,
groupMRsPath
,
groupName
,
mockDashboardOptions
,
mockGroupOptions
,
mockProjectOptions
,
projectIssuesPath
,
projectMRsPath
,
projectName
,
userId
,
widget
;
var
addBodyAttributes
,
assertLinks
,
dashboardIssuesPath
,
dashboardMRsPath
,
groupIssuesPath
,
groupMRsPath
,
groupName
,
mockDashboardOptions
,
mockGroupOptions
,
mockProjectOptions
,
projectIssuesPath
,
projectMRsPath
,
projectName
,
userId
,
widget
;
var
userName
=
'
root
'
;
widget
=
null
;
widget
=
null
;
...
@@ -19,6 +20,7 @@
...
@@ -19,6 +20,7 @@
window
.
gon
||
(
window
.
gon
=
{});
window
.
gon
||
(
window
.
gon
=
{});
window
.
gon
.
current_user_id
=
userId
;
window
.
gon
.
current_user_id
=
userId
;
window
.
gon
.
current_username
=
userName
;
dashboardIssuesPath
=
'
/dashboard/issues
'
;
dashboardIssuesPath
=
'
/dashboard/issues
'
;
...
@@ -93,8 +95,8 @@
...
@@ -93,8 +95,8 @@
assertLinks
=
function
(
list
,
issuesPath
,
mrsPath
)
{
assertLinks
=
function
(
list
,
issuesPath
,
mrsPath
)
{
var
a1
,
a2
,
a3
,
a4
,
issuesAssignedToMeLink
,
issuesIHaveCreatedLink
,
mrsAssignedToMeLink
,
mrsIHaveCreatedLink
;
var
a1
,
a2
,
a3
,
a4
,
issuesAssignedToMeLink
,
issuesIHaveCreatedLink
,
mrsAssignedToMeLink
,
mrsIHaveCreatedLink
;
issuesAssignedToMeLink
=
issuesPath
+
"
/?assignee_
id=
"
+
userId
;
issuesAssignedToMeLink
=
issuesPath
+
"
/?assignee_
username=
"
+
userName
;
issuesIHaveCreatedLink
=
issuesPath
+
"
/?author_
id=
"
+
userId
;
issuesIHaveCreatedLink
=
issuesPath
+
"
/?author_
username=
"
+
userName
;
mrsAssignedToMeLink
=
mrsPath
+
"
/?assignee_id=
"
+
userId
;
mrsAssignedToMeLink
=
mrsPath
+
"
/?assignee_id=
"
+
userId
;
mrsIHaveCreatedLink
=
mrsPath
+
"
/?author_id=
"
+
userId
;
mrsIHaveCreatedLink
=
mrsPath
+
"
/?author_id=
"
+
userId
;
a1
=
"
a[href='
"
+
issuesAssignedToMeLink
+
"
']
"
;
a1
=
"
a[href='
"
+
issuesAssignedToMeLink
+
"
']
"
;
...
...
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