Remove debugging statements
This commit is contained in:
parent
84ca9dfed6
commit
09ac4c789e
2 changed files with 0 additions and 3 deletions
|
|
@ -152,7 +152,6 @@ var Stream = {
|
|||
},
|
||||
|
||||
toggleComments: function(evt) {
|
||||
console.log("toggling");
|
||||
evt.preventDefault();
|
||||
var $this = $(this),
|
||||
text = $this.html(),
|
||||
|
|
|
|||
|
|
@ -49,9 +49,7 @@ describe("Stream", function() {
|
|||
});
|
||||
it("toggles class hidden on the comment block", function () {
|
||||
expect(jQuery('ul.comments')).toHaveClass("hidden");
|
||||
console.log("AAAAAH");
|
||||
$("a.show_post_comments").click();
|
||||
console.log("done");
|
||||
jasmine.Clock.tick(200);
|
||||
expect(jQuery('ul.comments')).not.toHaveClass("hidden");
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue