htmx/test/index.html
2020-05-01 09:37:24 -07:00

40 lines
1.1 KiB
HTML

<html lang="en">
<head>
<meta charset="utf-8" />
<title>Mocha Tests</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/sinon/pkg/sinon.js"></script>
<script src="../src/htmx.js"></script>
<script class="mocha-init">
mocha.setup('bdd');
mocha.checkLeaks();
should = chai.should();
</script>
<script src="util.js"></script>
<script src="ajax.js"></script>
<script src="verbs.js"></script>
<script src="headers.js"></script>
<script src="classes.js"></script>
<script src="indicators.js"></script>
<script src="history.js"></script>
<script src="values.js"></script>
<script src="events.js"></script>
<script src="swap_direct.js"></script>
<script class="mocha-exec">
mocha.run();
</script>
<em>Work Area</em>
<hr/>
<div id="work-area" class="hx-history-element">
</div>
</body>
</html>