-
Notifications
You must be signed in to change notification settings - Fork 477
/
Copy pathindex.html
38 lines (33 loc) · 943 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery Migrate Test Suite</title>
<!-- QUnit -->
<link rel="stylesheet" href="../external/qunit/qunit.css" media="screen">
<script src="../external/qunit/qunit.js"></script>
<script src="../external/sinon/sinon.js"></script>
<!-- A promise polyfill -->
<script src="../external/npo/npo.js"></script>
<!-- Version comparisons -->
<script src="data/compareVersions.js"></script>
<!-- Load a jQuery and jquery-migrate plugin file based on URL -->
<script src="data/testinit.js"></script>
<script>
TestManager.loadProject( "jquery", "git.min" );
// Close this script tag so file will load
</script>
<script>
jQuery.noConflict();
TestManager.loadProject( "jquery-migrate", "min", true );
</script>
<!-- Unit test files -->
<script>
TestManager.loadTests();
</script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</body>
</html>