Skip to content

Instantly share code, notes, and snippets.

@mark-rushakoff
Created March 2, 2012 21:10
Show Gist options
  • Save mark-rushakoff/1961432 to your computer and use it in GitHub Desktop.
Save mark-rushakoff/1961432 to your computer and use it in GitHub Desktop.
Sample gist for try-jasmine
function add(a, b) {
return a + b;
}
describe("trying specs from a gist", function() {
it("works with multiple files in a gist", function() {
expect(add(1, 2)).toBe(3);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment