fixtable
Version:
A grid library to present tabular data
28 lines (27 loc) • 776 B
HTML
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css" />
</head>
<body>
<div id="mocha"></div>
<div id="fixtableContainer"></div>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script>
mocha.ui('bdd');
mocha.reporter('html');
expect = chai.expect;
</script>
<script src="../dist/fixtable.min.js"></script>
<script src="fixtable.spec.js"></script>
<script>
if (window.mochaPhantomJS) {
window.mochaPhantomJS.run();
} else {
window.mocha.run();
}
</script>
</body>
</html>