Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Added missing istanbul ignore next.
Browse files Browse the repository at this point in the history
  • Loading branch information
ma2ciek committed Nov 22, 2019
1 parent c6c4a85 commit d0496f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/model/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ export default class Model {
}
} catch ( err ) {
// @if CK_DEBUG // throw err;
/* istanbul ignore next */
CKEditorError.rethrowUnexpectedError( err, this );
}
}
Expand Down Expand Up @@ -226,6 +227,7 @@ export default class Model {
}
} catch ( err ) {
// @if CK_DEBUG // throw err;
/* istanbul ignore next */
CKEditorError.rethrowUnexpectedError( err, this );
}
}
Expand Down
1 change: 1 addition & 0 deletions src/view/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,7 @@ export default class View {
return callbackResult;
} catch ( err ) {
// @if CK_DEBUG // throw err;
/* istanbul ignore next */
CKEditorError.rethrowUnexpectedError( err, this );
}
}
Expand Down

0 comments on commit d0496f6

Please sign in to comment.