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
Jérome Perrin
gitlab-ce
Commits
00ced96c
Commit
00ced96c
authored
Jun 12, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added specs for is-active class
added spec for openPendingTab in component
parent
e1ec70cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
spec/javascripts/ide/components/commit_sidebar/list_item_spec.js
...vascripts/ide/components/commit_sidebar/list_item_spec.js
+16
-0
spec/javascripts/ide/components/repo_commit_section_spec.js
spec/javascripts/ide/components/repo_commit_section_spec.js
+9
-0
No files found.
spec/javascripts/ide/components/commit_sidebar/list_item_spec.js
View file @
00ced96c
...
...
@@ -90,4 +90,20 @@ describe('Multi-file editor commit sidebar list item', () => {
});
});
});
describe
(
'
is active
'
,
()
=>
{
it
(
'
does not add active class when dont keys match
'
,
()
=>
{
expect
(
vm
.
$el
.
classList
).
not
.
toContain
(
'
is-active
'
);
});
it
(
'
adds active class when keys match
'
,
done
=>
{
vm
.
keyPrefix
=
'
staged
'
;
vm
.
$nextTick
(()
=>
{
expect
(
vm
.
$el
.
classList
).
toContain
(
'
is-active
'
);
done
();
});
});
});
});
spec/javascripts/ide/components/repo_commit_section_spec.js
View file @
00ced96c
...
...
@@ -56,6 +56,8 @@ describe('RepoCommitSection', () => {
vm
.
$store
.
state
.
entries
[
f
.
path
]
=
f
;
});
spyOn
(
vm
,
'
openPendingTab
'
).
and
.
callThrough
();
return
vm
.
$mount
();
}
...
...
@@ -177,5 +179,12 @@ describe('RepoCommitSection', () => {
expect
(
store
.
state
.
openFiles
.
length
).
toBe
(
1
);
expect
(
store
.
state
.
openFiles
[
0
].
pending
).
toBe
(
true
);
});
it
(
'
calls openPendingTab
'
,
()
=>
{
expect
(
vm
.
openPendingTab
).
toHaveBeenCalledWith
({
file
:
vm
.
lastOpenedFile
,
keyPrefix
:
'
unstaged
'
,
});
});
});
});
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