2019-02-15 15:39:39 +05:30
|
|
|
import $ from 'jquery';
|
2020-01-01 13:55:28 +05:30
|
|
|
import blobBundle from '~/blob_edit/blob_bundle';
|
2019-02-15 15:39:39 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
jest.mock('~/blob_edit/edit_blob');
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
describe('BlobBundle', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
setFixtures(`
|
|
|
|
<div class="js-edit-blob-form" data-blob-filename="blah">
|
|
|
|
<button class="js-commit-button"></button>
|
|
|
|
<a class="btn btn-cancel" href="#"></a>
|
|
|
|
</div>`);
|
|
|
|
blobBundle();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets the window beforeunload listener to a function returning a string', () => {
|
|
|
|
expect(window.onbeforeunload()).toBe('');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('removes beforeunload listener if commit button is clicked', () => {
|
|
|
|
$('.js-commit-button').click();
|
|
|
|
|
|
|
|
expect(window.onbeforeunload).toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('removes beforeunload listener when cancel link is clicked', () => {
|
|
|
|
$('.btn.btn-cancel').click();
|
|
|
|
|
|
|
|
expect(window.onbeforeunload).toBeNull();
|
|
|
|
});
|
|
|
|
});
|