From 1a1549eed45631bdf64995fc47402ce6eafd97c1 Mon Sep 17 00:00:00 2001 From: A_A <21040751+Otto-AA@users.noreply.github.com> Date: Thu, 2 Aug 2018 13:49:21 +0200 Subject: [PATCH 1/2] Fix example in README.md --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 3ef0138b..dd4b6f5f 100644 --- a/Readme.md +++ b/Readme.md @@ -111,7 +111,7 @@ describe('POST /user', function() { .set('Accept', 'application/json') .expect(function(res) { res.body.id = 'some fixed id'; - res.body.name = res.body.name.toUpperCase(); + res.body.name = res.body.name.toLowerCase(); }) .expect(200, { id: 'some fixed id', From 968cc756b369f3c6bb4bd7e1e8c0a3118a9e8c82 Mon Sep 17 00:00:00 2001 From: Dimitri DO BAIRRO Date: Wed, 5 Sep 2018 05:46:28 +0200 Subject: [PATCH 2/2] chore(.travis.yml) use node 10 instead of node 9 (#505) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e3e29b69..5911b74d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,4 +2,4 @@ language: node_js node_js: - 6 - 8 - - 9 + - 10