1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-16 00:06:40 +01:00

bump express-validator to 2.20.8

This commit is contained in:
Ivar 2016-09-10 10:11:18 +02:00
parent 3da5b89a6d
commit 76ff93369d
2 changed files with 2 additions and 1 deletions

View File

@ -52,7 +52,7 @@
"deep-diff": "^0.3.3",
"errorhandler": "1.3.5",
"express": "4.13.4",
"express-validator": "2.20.3",
"express-validator": "2.20.8",
"install": "^0.6.1",
"knex": "^0.10.0",
"log4js": "0.6.35",

View File

@ -35,6 +35,7 @@ describe('The archive features api', () => {
it('must set name when reviving toggle', done => {
request
.post('/archive/revive')
.send({ name: '' })
.expect(400, done);
});
});