Skip to content

Instantly share code, notes, and snippets.

@toranb
Created September 1, 2012 23:45
Show Gist options
  • Select an option

  • Save toranb/3591456 to your computer and use it in GitHub Desktop.

Select an option

Save toranb/3591456 to your computer and use it in GitHub Desktop.
My first jasmine unit test
describe ("first test suite", function(){
it ("2 should equal 2", function(){
expect("2").toBe("2");
});
it ("1 should not equal 2", function(){
expect("1").not.toBe("2");
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment