Skip to content

Instantly share code, notes, and snippets.

@gbellmann
Created March 2, 2017 19:25
Show Gist options
  • Select an option

  • Save gbellmann/9c1931d877dd79b0bdc577539f17b395 to your computer and use it in GitHub Desktop.

Select an option

Save gbellmann/9c1931d877dd79b0bdc577539f17b395 to your computer and use it in GitHub Desktop.
describe("Una suite es una función", function() {
it("y una spec también es una función", function() {
expect(true).toBe(true);
});
it("cada spec testea un caso", function() {
expect(false).not.toBe(true);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment