Skip to content

Instantly share code, notes, and snippets.

@nazgob
Created May 5, 2013 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nazgob/5521389 to your computer and use it in GitHub Desktop.
Save nazgob/5521389 to your computer and use it in GitHub Desktop.
kickoff jasmine
<!DOCTYPE html>
</html>
<head>
<title>Jasmine</title>
</head>
<body>
<script type="text/javascript" src="http://searls.github.com/jasmine-all/jasmine-all-min.js"></script>
<script type="text/javascript">
window.hugPanda = function(){ return "yay!"; };
</script>
<script type="text/javascript">
describe('hugging pandas', function(){
it('makes me yell "yay!"', function(){
expect(hugPanda()).toBe("yay!");
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment