gitlab-org--gitlab-foss/spec/javascripts/version_check_image_spec.js

36 lines
1.0 KiB
JavaScript
Raw Normal View History

import $ from 'jquery';
import VersionCheckImage from '~/version_check_image';
import ClassSpecHelper from './helpers/class_spec_helper';
2017-01-12 14:00:06 +00:00
2018-10-17 07:13:26 +00:00
describe('VersionCheckImage', function() {
describe('bindErrorEvent', function() {
2017-01-12 14:00:06 +00:00
ClassSpecHelper.itShouldBeAStaticMethod(VersionCheckImage, 'bindErrorEvent');
2018-10-17 07:13:26 +00:00
beforeEach(function() {
2017-01-12 14:00:06 +00:00
this.imageElement = $('<div></div>');
});
2018-10-17 07:13:26 +00:00
it('registers an error event', function() {
2017-01-12 14:00:06 +00:00
spyOn($.prototype, 'on');
2018-10-17 07:13:26 +00:00
spyOn($.prototype, 'off').and.callFake(function() {
return this;
});
2017-01-12 14:00:06 +00:00
VersionCheckImage.bindErrorEvent(this.imageElement);
expect($.prototype.off).toHaveBeenCalledWith('error');
expect($.prototype.on).toHaveBeenCalledWith('error', jasmine.any(Function));
});
2018-10-17 07:13:26 +00:00
it('hides the imageElement on error', function() {
2017-01-12 14:00:06 +00:00
spyOn($.prototype, 'hide');
VersionCheckImage.bindErrorEvent(this.imageElement);
this.imageElement.trigger('error');
expect($.prototype.hide).toHaveBeenCalled();
});
});
});