From: XhmikosR Date: Mon, 30 Aug 2021 15:57:00 +0000 (+0300) Subject: tests: add Offcanvas too in jquery.spec.js (#34841) X-Git-Tag: v5.1.1~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef21000cbe742830e0e1e39864f9315daf939722;p=thirdparty%2Fbootstrap.git tests: add Offcanvas too in jquery.spec.js (#34841) --- diff --git a/js/tests/unit/jquery.spec.js b/js/tests/unit/jquery.spec.js index 289612df50..7513341a43 100644 --- a/js/tests/unit/jquery.spec.js +++ b/js/tests/unit/jquery.spec.js @@ -5,6 +5,7 @@ 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' @@ -32,6 +33,7 @@ describe('jQuery', () => { 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)