gitlab-org--gitlab-foss/spec/frontend/bootstrap_jquery_spec.js

45 lines
1.0 KiB
JavaScript
Raw Normal View History

import $ from 'jquery';
import '~/commons/bootstrap';
2016-07-24 20:45:11 +00:00
describe('Bootstrap jQuery extensions', () => {
describe('disable', () => {
beforeEach(() => {
setFixtures('<input type="text" />');
2016-07-24 20:45:11 +00:00
});
2018-10-17 07:13:26 +00:00
it('adds the disabled attribute', () => {
const $input = $('input').first();
2018-10-17 07:13:26 +00:00
$input.disable();
expect($input).toHaveAttr('disabled', 'disabled');
});
it('adds the disabled class', () => {
const $input = $('input').first();
2018-10-17 07:13:26 +00:00
$input.disable();
expect($input).toHaveClass('disabled');
});
});
describe('enable', () => {
beforeEach(() => {
setFixtures('<input type="text" disabled="disabled" class="disabled" />');
2018-10-17 07:13:26 +00:00
});
it('removes the disabled attribute', () => {
const $input = $('input').first();
2018-10-17 07:13:26 +00:00
$input.enable();
expect($input).not.toHaveAttr('disabled');
});
it('removes the disabled class', () => {
const $input = $('input').first();
2018-10-17 07:13:26 +00:00
$input.enable();
expect($input).not.toHaveClass('disabled');
2016-07-24 20:45:11 +00:00
});
});
2018-10-17 07:13:26 +00:00
});