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
b663a1fc
Commit
b663a1fc
authored
Jul 26, 2017
by
Luke "Jared" Bennett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update scroll_helper_spec
parent
dc5e7f3e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
spec/javascripts/helpers/scroll_helper_spec.js
spec/javascripts/helpers/scroll_helper_spec.js
+5
-3
No files found.
spec/javascripts/helpers/scroll_helper_spec.js
View file @
b663a1fc
...
...
@@ -6,7 +6,7 @@ describe('ScrollHelper', () => {
describe
(
'
getScrollWidth
'
,
()
=>
{
const
parent
=
jasmine
.
createSpyObj
(
'
parent
'
,
[
'
css
'
,
'
appendTo
'
,
'
remove
'
]);
const
child
=
jasmine
.
createSpyObj
(
'
child
'
,
[
'
css
'
,
'
appendTo
'
,
'
outerWidth
'
]);
const
child
=
jasmine
.
createSpyObj
(
'
child
'
,
[
'
css
'
,
'
appendTo
'
,
'
get
'
]);
let
scrollWidth
;
beforeEach
(()
=>
{
...
...
@@ -15,7 +15,9 @@ describe('ScrollHelper', () => {
parent
.
css
.
and
.
returnValue
(
parent
);
child
.
css
.
and
.
returnValue
(
child
);
child
.
outerWidth
.
and
.
returnValue
(
width
);
child
.
get
.
and
.
returnValue
({
offsetWidth
:
width
,
});
scrollWidth
=
ScrollHelper
.
getScrollWidth
();
});
...
...
@@ -35,7 +37,7 @@ describe('ScrollHelper', () => {
});
expect
(
child
.
appendTo
).
toHaveBeenCalledWith
(
parent
);
expect
(
parent
.
appendTo
).
toHaveBeenCalledWith
(
'
body
'
);
expect
(
child
.
outerWidth
).
toHaveBeenCalled
(
);
expect
(
child
.
get
).
toHaveBeenCalledWith
(
0
);
expect
(
parent
.
remove
).
toHaveBeenCalled
();
expect
(
scrollWidth
).
toEqual
(
100
-
width
);
});
...
...
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