css-time
Version:
A tiny library that converts milliseconds to and from CSS time.
24 lines (22 loc) • 569 B
HTML
<html>
<head>
<meta charset="utf-8" />
<title>css-time.js unit tests</title>
<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>
mocha.setup('tdd');
</script>
<script src="../src/css-time.min.js"></script>
<script src="css-time.js"></script>
<script>
mocha.checkLeaks();
mocha.run();
</script>
</body>
</html>