summaryrefslogtreecommitdiffstats
path: root/examples/nodejs-mongodb-mongoose-restify/test/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nodejs-mongodb-mongoose-restify/test/index.html')
-rw-r--r--examples/nodejs-mongodb-mongoose-restify/test/index.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/examples/nodejs-mongodb-mongoose-restify/test/index.html b/examples/nodejs-mongodb-mongoose-restify/test/index.html
new file mode 100644
index 0000000..846630c
--- /dev/null
+++ b/examples/nodejs-mongodb-mongoose-restify/test/index.html
@@ -0,0 +1,47 @@
+<!doctype html>
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <title>Mocha Spec Runner</title>
+ <link rel="stylesheet" href="lib/mocha/mocha.css">
+</head>
+<body>
+ <div id="mocha"></div>
+ <script src="lib/mocha/mocha.js"></script>
+ <script>mocha.setup('bdd')</script>
+
+ <!-- assertion framework -->
+
+ <script src="lib/chai.js"></script>
+
+
+ <script>expect = chai.expect</script>
+
+
+
+
+ <!-- -->
+
+ <!-- include source files here... -->
+
+ <!-- include spec files here... -->
+ <script>
+ // replace this by your own specs
+ (function() {
+ describe('Give it some context', function() {
+ describe('maybe a bit more context here', function() {
+
+ it('should run here few assertions', function() {
+
+ });
+
+ });
+ });
+ })();
+ </script>
+
+ <!-- trigger the mocha runner -->
+ <script src="runner/mocha.js"></script>
+
+</body>
+</html>