-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
spec.html
93 lines (49 loc) · 2.91 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!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">
<link rel="stylesheet" type="text/css" href="build/css/intlTelInput.css">
</head>
<body>
<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/boot0.js"></script>
<script src=".grunt/grunt-contrib-jasmine/boot1.js"></script>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/jasmine-jquery/lib/jasmine-jquery.js"></script>
<script src="src/spec/helpers/helpers.js"></script>
<script src="build/js/intlTelInputWithUtils.min.js"></script>
<script src="src/spec/tests/methods/destroy.js"></script>
<script src="src/spec/tests/methods/getExtension.js"></script>
<script src="src/spec/tests/methods/getNumber.js"></script>
<script src="src/spec/tests/methods/getNumberType.js"></script>
<script src="src/spec/tests/methods/getSelectedCountryData.js"></script>
<script src="src/spec/tests/methods/getValidationError.js"></script>
<script src="src/spec/tests/methods/isValidNumber.js"></script>
<script src="src/spec/tests/methods/isValidNumberPrecise.js"></script>
<script src="src/spec/tests/methods/setCountry.js"></script>
<script src="src/spec/tests/methods/setNumber.js"></script>
<script src="src/spec/tests/methods/setPlaceholderNumberType.js"></script>
<script src="src/spec/tests/options/allowDropdown.js"></script>
<script src="src/spec/tests/options/autoPlaceholder.js"></script>
<script src="src/spec/tests/options/containerClass.js"></script>
<script src="src/spec/tests/options/customPlaceholder.js"></script>
<script src="src/spec/tests/options/dropdownContainer.js"></script>
<script src="src/spec/tests/options/excludeCountries.js"></script>
<script src="src/spec/tests/options/formatOnDisplay.js"></script>
<script src="src/spec/tests/options/geoIpLookup.js"></script>
<script src="src/spec/tests/options/hiddenInput.js"></script>
<script src="src/spec/tests/options/initialCountry.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/placeholderNumberType.js"></script>
<script src="src/spec/tests/options/separateDialCode.js"></script>
<script src="src/spec/tests/options/useFullscreenPopup.js"></script>
<script src="src/spec/tests/static/defaults.js"></script>
<script src="src/spec/tests/static/getCountryData.js"></script>
<script src=".grunt/grunt-contrib-jasmine/reporter.js"></script>
</body>
</html>