describe "A suite", -> it "contains spec with an expectation", -> expect(true).toBe true describe "A suite is just a function", -> it "and so is a spec", -> a = true expect(a).toBe true describe "The 'tobe' matcher compares with ===", -> it "and has a positive case", -> expect(true).toBe true it "and can have a negative case", -> expect(false).not.toBe true describe "Included matchers:", -> it "Th