riot-observable
Version:
Simple script to send and receive events
21 lines (20 loc) • 631 B
HTML
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Observable tests</title>
<style type="riot"></style>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" type="text/css" />
</head>
<body>
<div id="mocha"></div>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/expect.js/index.js"></script>
<script>
mocha.setup('bdd')
</script>
<script src="../dist/observable.js"></script>
<script src="specs/core.specs.js"></script>
<script src="runner.js"></script>
</body>
</html>