Skip to content

Commit

Permalink
Update readme.md (#1075)
Browse files Browse the repository at this point in the history
Clarify that context is initialized anew for each test.
  • Loading branch information
alathon authored and novemberborn committed Oct 14, 2016
1 parent dae3a44 commit e10338e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -549,7 +549,7 @@ test(t => {
});
```

By default `t.context` is an object but you can reassign it:
The context is not shared between tests, allowing you to set up data in a way where it will not risk leaking to other, subsequent tests. By default `t.context` is an object but you can reassign it:

```js
test.beforeEach(t => {
Expand Down

0 comments on commit e10338e

Please sign in to comment.