mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
aa650f0f1e
Reference: https://jasmine.github.io/tutorials/async 'DEPRECATION: An asynchronous function called its 'done' callback more than once. This is a bug in the spec, beforeAll, beforeEach, afterAll, or afterEach function in question. This will be treated as an error in a future version. See<https://jasmine.github.io/tutorials/upgrading_to_Jasmine_4.0#deprecations-due-to-calling-done-multiple-times> for more information.
61 lines
1.9 KiB
JavaScript
61 lines
1.9 KiB
JavaScript
/* eslint-env jquery */
|
|
|
|
import Alert from '../../src/alert'
|
|
import Button from '../../src/button'
|
|
import Carousel from '../../src/carousel'
|
|
import Collapse from '../../src/collapse'
|
|
import Dropdown from '../../src/dropdown'
|
|
import Modal from '../../src/modal'
|
|
import Offcanvas from '../../src/offcanvas'
|
|
import Popover from '../../src/popover'
|
|
import ScrollSpy from '../../src/scrollspy'
|
|
import Tab from '../../src/tab'
|
|
import Toast from '../../src/toast'
|
|
import Tooltip from '../../src/tooltip'
|
|
import { clearFixture, getFixture } from '../helpers/fixture'
|
|
|
|
describe('jQuery', () => {
|
|
let fixtureEl
|
|
|
|
beforeAll(() => {
|
|
fixtureEl = getFixture()
|
|
})
|
|
|
|
afterEach(() => {
|
|
clearFixture()
|
|
})
|
|
|
|
it('should add all plugins in jQuery', () => {
|
|
expect(Alert.jQueryInterface).toEqual(jQuery.fn.alert)
|
|
expect(Button.jQueryInterface).toEqual(jQuery.fn.button)
|
|
expect(Carousel.jQueryInterface).toEqual(jQuery.fn.carousel)
|
|
expect(Collapse.jQueryInterface).toEqual(jQuery.fn.collapse)
|
|
expect(Dropdown.jQueryInterface).toEqual(jQuery.fn.dropdown)
|
|
expect(Modal.jQueryInterface).toEqual(jQuery.fn.modal)
|
|
expect(Offcanvas.jQueryInterface).toEqual(jQuery.fn.offcanvas)
|
|
expect(Popover.jQueryInterface).toEqual(jQuery.fn.popover)
|
|
expect(ScrollSpy.jQueryInterface).toEqual(jQuery.fn.scrollspy)
|
|
expect(Tab.jQueryInterface).toEqual(jQuery.fn.tab)
|
|
expect(Toast.jQueryInterface).toEqual(jQuery.fn.toast)
|
|
expect(Tooltip.jQueryInterface).toEqual(jQuery.fn.tooltip)
|
|
})
|
|
|
|
it('should use jQuery event system', () => {
|
|
return new Promise(resolve => {
|
|
fixtureEl.innerHTML = [
|
|
'<div class="alert">',
|
|
' <button type="button" data-bs-dismiss="alert">x</button>',
|
|
'</div>'
|
|
].join('')
|
|
|
|
$(fixtureEl).find('.alert')
|
|
.one('closed.bs.alert', () => {
|
|
expect($(fixtureEl).find('.alert')).toHaveSize(0)
|
|
resolve()
|
|
})
|
|
|
|
$(fixtureEl).find('button').trigger('click')
|
|
})
|
|
})
|
|
})
|