Files
socket.io/test/index.html
2012-12-08 20:12:44 -03:00

28 lines
736 B
HTML

<!doctype html>
<html>
<head>
<title>engine.io-client tests</title>
<link rel="stylesheet" href="/support/mocha.css" media="all">
<!-- engine.io standalone build -->
<script src="/support/engine.io.js"></script>
<!-- test deps -->
<script src="/support/jquery.js"></script>
<script src="/support/expect.js"></script>
<script src="/support/mocha.js"></script>
<script>mocha.setup('bdd');</script>
<!-- tests -->
<script src="/engine.io-client.js"></script>
<script src="/util.js"></script>
<script src="/parser.js"></script>
<script src="/transport.js"></script>
<script>window.onload = mocha.run;</script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>