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
78b0c35c
Commit
78b0c35c
authored
Sep 04, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove project title karma test
parent
3b1993a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
59 deletions
+0
-59
spec/javascripts/project_title_spec.js
spec/javascripts/project_title_spec.js
+0
-59
No files found.
spec/javascripts/project_title_spec.js
deleted
100644 → 0
View file @
3b1993a8
/* global Project */
import
'
select2/select2
'
;
import
'
~/gl_dropdown
'
;
import
'
~/api
'
;
import
'
~/project_select
'
;
import
'
~/project
'
;
describe
(
'
Project Title
'
,
()
=>
{
const
dummyApiVersion
=
'
v3000
'
;
preloadFixtures
(
'
issues/open-issue.html.raw
'
);
loadJSONFixtures
(
'
projects.json
'
);
beforeEach
(()
=>
{
loadFixtures
(
'
issues/open-issue.html.raw
'
);
window
.
gon
=
{};
window
.
gon
.
api_version
=
dummyApiVersion
;
// eslint-disable-next-line no-new
new
Project
();
});
describe
(
'
project list
'
,
()
=>
{
let
reqUrl
;
let
reqData
;
beforeEach
(()
=>
{
const
fakeResponseData
=
getJSONFixture
(
'
projects.json
'
);
spyOn
(
jQuery
,
'
ajax
'
).
and
.
callFake
((
req
)
=>
{
const
def
=
$
.
Deferred
();
reqUrl
=
req
.
url
;
reqData
=
req
.
data
;
def
.
resolve
(
fakeResponseData
);
return
def
.
promise
();
});
});
it
(
'
toggles dropdown
'
,
()
=>
{
const
$menu
=
$
(
'
.js-dropdown-menu-projects
'
);
window
.
gon
.
current_user_id
=
1
;
$
(
'
.js-projects-dropdown-toggle
'
).
click
();
expect
(
$menu
).
toHaveClass
(
'
open
'
);
expect
(
reqUrl
).
toBe
(
`/api/
${
dummyApiVersion
}
/projects.json?simple=true`
);
expect
(
reqData
).
toEqual
({
search
:
''
,
order_by
:
'
last_activity_at
'
,
per_page
:
20
,
membership
:
true
,
});
$menu
.
find
(
'
.dropdown-menu-close-icon
'
).
click
();
expect
(
$menu
).
not
.
toHaveClass
(
'
open
'
);
});
});
afterEach
(()
=>
{
window
.
gon
=
{};
});
});
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