-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
17 lines (17 loc) · 783 Bytes
/
index.html
File metadata and controls
17 lines (17 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Credit Card Network Detector</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/3.0.2/mocha.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/3.0.2/mocha.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/3.5.0/chai.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sinon.js/1.15.4/sinon.min.js"></script>
<script src="runner.js"></script>
</head>
<body>
<div id="mocha">Open the Developer's Console (⌥⌘J) to get started. Move the console to the right side of the page (⌘⇧D) for an optimal experience.</div>
<script src="detectNetwork.js"></script>
<script src="detectNetwork.test.js"></script>
</body>
</html>