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
|
<html>
<head>
<meta charset="utf-8">
<title>rsvp.js Tests</title>
<link rel="stylesheet" href="mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="json3.js"></script>
<script src="mocha.js"></script>
<script src="/testem.js"></script>
<script>
mocha.setup({
ui: 'bdd',
timeout: 200,
ignoreLeaks: true
});
</script>
<script src="browserify.js"></script>
<script>
if (window.mochaPhantomJS) { mochaPhantomJS.run(); }
else { mocha.run(); }
</script>
</body>
</html>
|