Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Jul 10, 2012
1 parent e77980d commit abae4f9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Readme.md
Expand Up @@ -49,6 +49,15 @@ describe('GET /users', function(){
.expect(200, done);
})
})
```

Anything you can do with superagent, you can do with supertest - for example multipart file uploads!

```js
request(app)
.post('/')
.attach('test/fixtures/homeboy.jpg', 'avatar')
...
```

## API
Expand Down

0 comments on commit abae4f9

Please sign in to comment.