Commit 99193d82 authored by Luke "Jared" Bennett's avatar Luke "Jared" Bennett

Added scroll_helper tests

parent 929c66d6
......@@ -54,7 +54,7 @@ import RefSelectDropdown from './ref_select_dropdown';
import GfmAutoComplete from './gfm_auto_complete';
import ShortcutsBlob from './shortcuts_blob';
import initSettingsPanels from './settings_panels';
import { setScrollWidth } from './helpers/scroll_helper';
import ScrollHelper from './helpers/scroll_helper';
(function() {
var Dispatcher;
......@@ -77,7 +77,7 @@ import { setScrollWidth } from './helpers/scroll_helper';
return false;
}
setScrollWidth();
ScrollHelper.setScrollWidth();
path = page.split(':');
shortcut_handler = null;
......
function getScrollWidth() {
import $ from 'jquery';
const ScrollHelper = {
getScrollWidth() {
const $rulerContainer = $('<div>').css({
visibility: 'hidden',
width: 100,
......@@ -17,13 +20,11 @@ function getScrollWidth() {
$rulerContainer.remove();
return 100 - scrollWidth;
}
function setScrollWidth() {
$('body').attr('data-scroll-width', getScrollWidth());
}
},
export {
getScrollWidth,
setScrollWidth,
setScrollWidth() {
$('body').attr('data-scroll-width', ScrollHelper.getScrollWidth());
},
};
export default ScrollHelper;
import $ from 'jquery';
import ScrollHelper from '~/helpers/scroll_helper';
describe('ScrollHelper', () => {
describe('setScrollWidth', () => {
it('calls getScrollWidth and sets data-scroll-width', () => {
const width = 10;
spyOn($.fn, 'attr');
spyOn(ScrollHelper, 'getScrollWidth').and.returnValue(width);
ScrollHelper.setScrollWidth();
expect(ScrollHelper.getScrollWidth).toHaveBeenCalled();
expect($.fn.attr).toHaveBeenCalledWith('data-scroll-width', width);
});
});
});
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment