mirror of
https://github.com/chaijs/chai
synced 2024-11-15 16:18:02 +00:00
23 lines
724 B
HTML
23 lines
724 B
HTML
<html>
|
|
<head>
|
|
<title>Mocha</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<link rel="stylesheet" href="mocha.css" />
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
|
|
<script src="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>
|