Skip to content

Commit

Permalink
Merge pull request #10 from adambutler/add-test-suite
Browse files Browse the repository at this point in the history
Add test suite
  • Loading branch information
adambutler committed Oct 19, 2014
2 parents b428b5e + 6479e3c commit dced622
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
22 changes: 22 additions & 0 deletions test/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!doctype html>
<html>
<head>
<title>diy.js test suite</title>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/mocha/1.21.5/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="/js/diy.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/mocha/1.21.5/mocha.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/chai/1.9.2/chai.js"></script>
<script>
mocha.ui('bdd');
mocha.reporter('html');
var expect = chai.expect;
</script>
<script src="test.js"></script>
<script>
mocha.run();
</script>
</body>
</html>
5 changes: 5 additions & 0 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
describe('$', function() {
it('should be equal to document', function(){
expect($).to.equal(document)
});
});

0 comments on commit dced622

Please sign in to comment.