Created
May 5, 2013 16:56
-
-
Save nazgob/5521389 to your computer and use it in GitHub Desktop.
kickoff jasmine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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