forked from jackocnr/intl-tel-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec.html
75 lines (40 loc) · 2.2 KB
/
spec.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Jasmine Spec Runner</title>
<link rel="shortcut icon" type="image/png" href=".grunt/grunt-contrib-jasmine/jasmine_favicon.png">
<link rel="stylesheet" type="text/css" href=".grunt/grunt-contrib-jasmine/jasmine.css">
</head>
<body>
<script src=".grunt/grunt-contrib-jasmine/es5-shim.js"></script>
<script src=".grunt/grunt-contrib-jasmine/jasmine.js"></script>
<script src=".grunt/grunt-contrib-jasmine/jasmine-html.js"></script>
<script src=".grunt/grunt-contrib-jasmine/boot.js"></script>
<script src="lib/jquery/jquery.js"></script>
<script src="lib/jasmine-jquery/jasmine-jquery.js"></script>
<script src="src/spec/helpers/helpers.js"></script>
<script src="src/js/data.js"></script>
<script src="src/js/intlTelInput.js"></script>
<script src="lib/libphonenumber/build/utils.js"></script>
<script src="src/spec/tests/methods/destroy.js"></script>
<script src="src/spec/tests/methods/getCountryData.js"></script>
<script src="src/spec/tests/methods/getSelectedCountryData.js"></script>
<script src="src/spec/tests/methods/isValidNumber.js"></script>
<script src="src/spec/tests/methods/selectCountry.js"></script>
<script src="src/spec/tests/methods/setCountryData.js"></script>
<script src="src/spec/tests/methods/setNumber.js"></script>
<script src="src/spec/tests/options/autoFormat.js"></script>
<script src="src/spec/tests/options/autoHideDialCode.js"></script>
<script src="src/spec/tests/options/defaultCountry.js"></script>
<script src="src/spec/tests/options/nationalMode.js"></script>
<script src="src/spec/tests/options/onlyCountries.js"></script>
<script src="src/spec/tests/options/preferredCountries.js"></script>
<script src="src/spec/tests/options/responsiveDropdown.js"></script>
<script src="src/spec/tests/options/utilsScript.js"></script>
<script src="src/spec/tests/vanilla/core.js"></script>
<script src="src/spec/tests/vanilla/keyboardShortcuts.js"></script>
<script src="src/spec/tests/vanilla/multipleInstances.js"></script>
<script src=".grunt/grunt-contrib-jasmine/reporter.js"></script>
</body>
</html>