Skip to content

Commit

Permalink
fix: auto-ignore matches 'ignore' string instead of space
Browse files Browse the repository at this point in the history
  • Loading branch information
kjin committed May 22, 2018
1 parent de39930 commit 5f10932
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,15 +165,15 @@ export class Cnysa {
* Default options for createStackTrace.
*/
public static STACK_TRACE_DEFAULTS: CnysaStackTraceOptions = {
ignoreTypes: / /
ignoreTypes: /ignore/
};

/**
* Default options for getAsyncSnapshot.
*/
public static SNAPSHOT_DEFAULTS: CnysaSnapshotOptions = {
width: process.stdout.columns || 80,
ignoreTypes: / /,
ignoreTypes: /ignore/,
roots: [],
padding: 1,
format: 'default'
Expand Down

0 comments on commit 5f10932

Please sign in to comment.