File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ export class ConsoleCatcher {
180180 /**
181181 * Initializes the console interceptor by overriding default console methods
182182 */
183+ // eslint-disable-next-line @typescript-eslint/member-ordering
183184 public init ( ) : void {
184185 if ( this . isInitialized ) {
185186 return ;
@@ -219,6 +220,7 @@ export class ConsoleCatcher {
219220 *
220221 * @param event - The error or promise rejection event to handle
221222 */
223+ // eslint-disable-next-line @typescript-eslint/member-ordering
222224 public addErrorEvent ( event : ErrorEvent | PromiseRejectionEvent ) : void {
223225 const logEvent = this . createConsoleEventFromError ( event ) ;
224226
@@ -228,6 +230,7 @@ export class ConsoleCatcher {
228230 /**
229231 * Returns the current console output buffer
230232 */
233+ // eslint-disable-next-line @typescript-eslint/member-ordering
231234 public getConsoleLogStack ( ) : ConsoleLogEvent [ ] {
232235 return [ ...this . consoleOutput ] ;
233236 }
You can’t perform that action at this time.
0 commit comments