Skip to content

Instantly share code, notes, and snippets.

@kzkaed
Last active June 19, 2016 14:32
Show Gist options
  • Save kzkaed/83220bce887ea37b3c1c to your computer and use it in GitHub Desktop.
Save kzkaed/83220bce887ea37b3c1c to your computer and use it in GitHub Desktop.
function theAnswer() {
return "Lisa";
}
describe("theAnswer", function() {
it("to life the universe and everything", function() {
expect(theAnswer()).toEqual("Lisa");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment