forked from auth0/lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_harness.html
39 lines (34 loc) · 1.1 KB
/
test_harness.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
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="/node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<!-- support -->
<script src="/node_modules/jquery/dist/jquery.min.js"></script>
<script src="/node_modules/mocha/mocha.js"></script>
<script src="/node_modules/expect.js/expect.js"></script>
<script src="/node_modules/bean/bean.min.js"></script>
<!-- libs -->
<script src="/build/auth0-lock.js"></script>
<!-- config -->
<script src="/test/support/config.js"></script>
<!-- tests -->
<!-- NOTE: The order of this scripts matters -->
<!-- Since the mockup of Auth0.js lib is made in order -->
<script src="/test/db_connections.tests.js"></script>
<script src="/test/reset.tests.js"></script>
<script src="/test/signup.tests.js"></script>
<script src="/test/tests.js"></script>
<script src="/test/options.tests.js"></script>
<script src="/test/gravatar.tests.js"></script>
<script src="/test/password_strength.tests.js"></script>
<!-- start -->
<script>
mocha.run();
</script>
</body>
</html>