UNPKG

995 BHTMLView Raw
1<html>
2
3<head>
4 <meta charset="utf-8">
5 <title>deep-diff Tests</title>
6 <link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
7</head>
8
9<body>
10 <div id="mocha"></div>
11 <!--
12 You should open this file directly in a browser from your file system, not from a server...
13 -->
14 <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
15 <script src="../node_modules/expect.js/index.js"></script>
16 <script src="../node_modules/mocha/mocha.js"></script>
17 <script>
18 // Sets up a conflict in the global namespace.
19 DeepDiff = {
20 Conflict: "here"
21 };
22 DeepDiffConflict = DeepDiff;
23 </script>
24 <script src="../releases/deep-diff-0.3.2.min.js"></script>
25 <!--script src="../index.js"></script-->
26 <script>
27 mocha.setup('bdd');
28 </script>
29 <script src="tests.js"></script>
30 <script>
31 window.onload = function() {
32 'use strict';
33 mocha.run();
34 };
35 </script>
36</body>
37
38</html>