Skip to content

Instantly share code, notes, and snippets.

@westonplatter
Created November 6, 2013 05:46
Show Gist options
  • Select an option

  • Save westonplatter/7331514 to your computer and use it in GitHub Desktop.

Select an option

Save westonplatter/7331514 to your computer and use it in GitHub Desktop.
// fully finished tests
// ressources/ ... /completed
//
describe("I can create a Javascript variable", function(){
it("as a number", function(){
var one = 1;
expect(one).toBe(1);
});
it("as a string", function(){
var abc = "xyz";
expect(abc).toBe("xyz");
});
});
// study guides for the content,
// and what is left after the grunt task
//
describe("I can create a Javascript variable", function(){
it("as a number", function(){});
it("as a string", function(){});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment