From f635fce3ce85829ae993662bdf3d50feab4322d1 Mon Sep 17 00:00:00 2001 From: Vladimir Vukanac Date: Wed, 4 Nov 2020 08:52:09 +0100 Subject: [PATCH] Removes space in front of backticks for code blocks in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b32f5947..62150dec 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ describe('GET /user', function() { You can use `auth` method to pass HTTP username and password in the same way as in the [superagent](http://visionmedia.github.io/superagent/#authentication): - ```js +```js describe('GET /user', function() { it('responds with json', function(done) { request(app) @@ -213,7 +213,7 @@ There is another example that is introduced by the file [agency.js](https://gith Here is an example where 2 cookies are set on the request. - ```js +```js agent(app) .get('/api/content') .set('Cookie', ['nameOne=valueOne;nameTwo=valueTwo'])