UNPKG

backbone-tree-model

Version:

Tree data structure using Backbone Model and Collection

22 lines (20 loc) 761 B
<!doctype html> <html> <head> <title>Mocha Tests</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="../node_modules/mocha/mocha.css" /> <script src="../node_modules/underscore/underscore-min.js"></script> <script src="../node_modules/backbone/backbone-min.js"></script> <script src="../src/backbone.treemodel.js"></script> </head> <body> <div id="mocha"></div> <script src="../node_modules/mocha/mocha.js"></script> <script src="../node_modules/expect.js/index.js"></script> <script>mocha.setup('bdd')</script> <script src="backbone.tree_test.js"></script> <script> mocha.run(); </script> </body> </html>