Skip to content

Commit

Permalink
remove debugging stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
dgreensp committed Feb 8, 2019
1 parent 601b693 commit 95b580d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/unit/modules/history.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ describe('History', function() {
this.quill.history.options.delay = 0;
this.quill.history.options.userOnly = true;
this.quill.setText('\n');
this.quill.history.debug = true;
this.quill.insertText(0, 'a', Quill.sources.USER);
this.quill.insertText(1, 'b', Quill.sources.API);
this.quill.insertText(2, 'c', Quill.sources.USER);
Expand All @@ -214,7 +213,6 @@ describe('History', function() {
expect(this.quill.getText()).toEqual('abd\n');
this.quill.history.redo();
expect(this.quill.getText()).toEqual('abcd\n');
this.quill.history.debug = false;
});

it('correctly transform against remote changes', function() {
Expand Down

0 comments on commit 95b580d

Please sign in to comment.