mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-17 19:21:23 +03:00
fix: remove make array util function (#30430)
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
import Popover from '../../src/popover'
|
||||
import { makeArray } from '../../src/util/index'
|
||||
|
||||
/** Test helpers */
|
||||
import { getFixture, clearFixture, jQueryMock } from '../helpers/fixture'
|
||||
@@ -14,7 +13,7 @@ describe('Popover', () => {
|
||||
afterEach(() => {
|
||||
clearFixture()
|
||||
|
||||
const popoverList = makeArray(document.querySelectorAll('.popover'))
|
||||
const popoverList = document.querySelectorAll('.popover')
|
||||
|
||||
popoverList.forEach(popoverEl => {
|
||||
document.body.removeChild(popoverEl)
|
||||
|
||||
Reference in New Issue
Block a user