describe "the #test element", -> it "can have content added in one test...", -> $('#test').append('

New Stuff

') $('#test h1#added').length.should.equal(1) it "... that is removed before the next starts", -> $('#test h1#added').length.should.equal(0) it "is visible", -> $('#test').is(':visible').should.be.true