1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-10 15:44:51 +02:00

integration test to be sure bootstrap can be bundled

This commit is contained in:
Johann-S
2018-12-13 10:54:54 +01:00
committed by XhmikosR
parent db31ee1ea2
commit af60644d2f
5 changed files with 131 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import 'popper.js'
import $ from 'jquery'
import bootstrap from '../../../dist/js/bootstrap'
$(() => {
$('#resultUID').text(bootstrap.Util.getUID('bs'))
$('[data-toggle="tooltip"]').tooltip()
})