26 lines
694 B
HTML
26 lines
694 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Tests</title>
|
||
|
<link rel="stylesheet" href="../bower_components/qunit/qunit/qunit.css">
|
||
|
<link rel="stylesheet" href="../dist/sweetalert.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="qunit"></div>
|
||
|
<div id="qunit-fixture"></div>
|
||
|
|
||
|
<script src="../dist/sweetalert.min.js"></script>
|
||
|
|
||
|
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
|
||
|
<script src="../bower_components/qunit/qunit/qunit.js"></script>
|
||
|
|
||
|
<!-- For Travis CI -->
|
||
|
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
||
|
<script src="https://code.jquery.com/qunit/qunit-1.18.0.js"></script>
|
||
|
|
||
|
<script src="tests.js"></script>
|
||
|
</body>
|
||
|
</html>
|
||
|
|