it('sorts by indexes', function() {
      var comment1 = new CommentModel({indexes: [0, 1]});
      var comment2 = new CommentModel({indexes: [0, 2]});
      assert.equal(-1, commentComparator(comment1, comment2));
  });