Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_store
29 changes: 29 additions & 0 deletions SpecRunner.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Mocha Spec Runner</title>

<!-- testing frameworks -->
<link rel="stylesheet" href="lib/mocha/mocha.css">
<script src="lib/jquery-1.8.3.js"></script>
<script src="lib/mocha/mocha.js"></script>
<script src="lib/chai/chai.js"></script>
<!-- // <script src="lib/sinon/sinon.js"></script> -->
<script>
mocha.setup('bdd');
window.expect = chai.expect;
$(function() {
window.mochaPhantomJS ? mochaPhantomJS.run() : mocha.run();
});
</script>

<!-- source files -->
<script src="doppler.js"></script>

<!-- tests -->
<script src="spec/dopplerSpec.js"></script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>
Loading