Skip to content

Commit

Permalink
Update documentation tests
Browse files Browse the repository at this point in the history
  • Loading branch information
papandreou committed Jan 3, 2020
1 parent 95e4ffd commit 56bae35
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion documentation/assertions/Error/to-have-message.md
Expand Up @@ -12,7 +12,7 @@ expect(new Error('foobar'), 'to have message', 'barfoo');

```output
expected Error('foobar') to have message 'barfoo'
expected 'foobar' to equal 'barfoo'
expected 'foobar' to satisfy 'barfoo'
-foobar
+barfoo
Expand Down
Expand Up @@ -49,7 +49,7 @@ return expect(

```output
expected Promise to be fulfilled with value satisfying 'def'
expected 'abc' to equal 'def'
expected 'abc' to satisfy 'def'
-abc
+def
Expand Down
2 changes: 1 addition & 1 deletion documentation/assertions/Promise/to-be-fulfilled-with.md
Expand Up @@ -39,7 +39,7 @@ return expect(Promise.resolve('abc'), 'to be fulfilled with', 'def');

```output
expected Promise to be fulfilled with 'def'
expected 'abc' to equal 'def'
expected 'abc' to satisfy 'def'
-abc
+def
Expand Down

0 comments on commit 56bae35

Please sign in to comment.