Skip to content

Commit

Permalink
Fix snapshot skip interface
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiebuilds authored and novemberborn committed Nov 25, 2018
1 parent 0e82b04 commit 311c197
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.d.ts
Expand Up @@ -220,7 +220,7 @@ export interface SnapshotAssertion {
skip(expected: any, message?: string): void;

/** Skip this assertion. */
(expected: any, options: SnapshotOptions, message?: string): void;
skip(expected: any, options: SnapshotOptions, message?: string): void;
}

export interface ThrowsAssertion {
Expand Down
2 changes: 1 addition & 1 deletion index.js.flow
Expand Up @@ -233,7 +233,7 @@ export interface SnapshotAssertion {
skip(expected: any, message?: string): void;

/** Skip this assertion. */
(expected: any, options: SnapshotOptions, message?: string): void;
skip(expected: any, options: SnapshotOptions, message?: string): void;
}

export interface ThrowsAssertion {
Expand Down

0 comments on commit 311c197

Please sign in to comment.