mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-10 13:50:59 +01:00
28 lines
651 B
HTML
28 lines
651 B
HTML
<html>
|
|
<head>
|
|
<title>pako tests</title>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="../../node_modules/mocha/mocha.css" />
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="../../node_modules/mocha/mocha.js"></script>
|
|
<script src="../../node_modules/chai/chai.js"></script>
|
|
<script src="./pako.js"></script>
|
|
<script>
|
|
mocha.ui('bdd');
|
|
mocha.reporter('html');
|
|
assert = chai.assert;
|
|
</script>
|
|
<script src="test.js"></script>
|
|
<script>
|
|
if (window.mochaPhantomJS) {
|
|
mochaPhantomJS.run();
|
|
} else {
|
|
mocha.run();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|
|
|