You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
js-md2/tests/requirejs.html

25 lines
749 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MD2</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/2.1.0/mocha.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/2.1.0/mocha.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/expect.js/0.2.0/expect.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.17/require.min.js"></script>
</head>
<body>
<div id="mocha"></div>
<script>
mocha.setup('bdd');
require(['../src/md2.js'], function (md2) {
window.md2 = md2;
require(['test.js'], function () {
mocha.checkLeaks();
mocha.run();
})
});
</script>
</body>
</html>