mirror of
https://github.com/chaijs/chai
synced 2024-11-15 00:07:11 +00:00
23 lines
794 B
HTML
23 lines
794 B
HTML
<html>
|
|
<head>
|
|
<title>Mocha</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<link rel="stylesheet" href="../../node_modules/mocha/mocha.css" />
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
|
|
<script src="../../node_modules/mocha/mocha.js"></script>
|
|
<script>mocha.setup('tdd')</script>
|
|
<script src="../../chai.js"></script>
|
|
<script src="../configuration.js"></script>
|
|
<script src="../expect.js"></script>
|
|
<script src="../should.js"></script>
|
|
<script src="../assert.js"></script>
|
|
<script src="../plugins.js"></script>
|
|
<script>onload = function() {
|
|
mocha.run();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
</body>
|
|
</html>
|