mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-19 19:55:51 +00:00
33 lines
928 B
HTML
33 lines
928 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<!-- encoding must be set for mocha's special characters to render properly -->
|
|
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
|
|
<script src="/test/vendor/lodash.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="deb"></div>
|
|
<div id="mocha"></div>
|
|
<script src="/node_modules/mocha/mocha.js"></script>
|
|
|
|
<script src="/node_modules/mocha-in-sauce/client.js"></script>
|
|
|
|
<script src="/build/ripple-latest-min.js"></script>
|
|
<script>
|
|
mocha.ui('bdd')
|
|
</script>
|
|
|
|
<script src="../test-compiled-for-web/api-test.js"></script>
|
|
|
|
<script src="../test-compiled-for-web/broadcast-api-test.js"></script>
|
|
|
|
<script src="../test-compiled-for-web/connection-test.js"></script>
|
|
|
|
<script src="/test-compiled-for-web/rangeset-test.js"></script>
|
|
|
|
<script>
|
|
mochaSaucePlease({xunit: false});
|
|
</script>
|
|
</body>
|
|
</html>
|