aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/jed/test/index.html
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-04 11:55:31 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-04 11:55:31 +0200
commit1c26d75f62bd0fb4d2bd8a428d628a6f77d7eb96 (patch)
tree36d8bd38e293fd3e47df55a9e90a2edfb1a337fb /thirdparty/jed/test/index.html
parent133a8c672c26609e9d56d4e184b779ca26971a8c (diff)
parenteeaa2c11ee64761b706a41478bc74fedbf4162d7 (diff)
Merge commit 'eeaa2c11ee64761b706a41478bc74fedbf4162d7' as 'thirdparty/jed'
Diffstat (limited to 'thirdparty/jed/test/index.html')
-rw-r--r--thirdparty/jed/test/index.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/thirdparty/jed/test/index.html b/thirdparty/jed/test/index.html
new file mode 100644
index 000000000..bd92793a3
--- /dev/null
+++ b/thirdparty/jed/test/index.html
@@ -0,0 +1,24 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset=utf-8 />
+ <title>Jed.js Test Suite</title>
+ <link rel="stylesheet" href="/node_modules/mocha/mocha.css" />
+ <script src="/test/jquery.min.js"></script>
+ <script src="/node_modules/mocha/mocha.js"></script>
+ <script src="/node_modules/expect.js/expect.js"></script>
+ <script>mocha.setup('bdd')</script>
+
+ <script src="/jed.js"></script>
+ <script src="/test/tests.js"></script>
+ </head>
+ <body>
+ <h1>Jed.js Test Suite</h1>
+ <div id="mocha"></div>
+ <script>
+ window.onload = function () {
+ mocha.run().globals(['Jed']);
+ };
+ </script>
+ </body>
+</html>