yeti
Version:
27 lines (24 loc) • 623 B
HTML
<html>
<head>
<title>Yeti Mocha Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../../../dep/dev/mocha.css" />
<script src="../../../dep/dev/mocha.js"></script>
<script src="../../../dep/dev/expect.js"></script>
</head>
<body>
<div id="mocha"></div>
<script>
mocha.setup('bdd');
describe('hi mocha', function(){
it('should have a passing test', function(){
expect(true).to.be(true);
})
});
if(!("$yetify" in window)) {
var runner = mocha.run();
}
</script>
</body>
</html>