deps: body-parser@2.0.0-beta.1

This commit is contained in:
Douglas Christopher Wilson
2021-12-17 23:02:38 -05:00
parent 1574925cad
commit af341b0f09
8 changed files with 23 additions and 14 deletions

View File

@@ -195,7 +195,7 @@ describe('express.text()', function () {
.post('/')
.set('Content-Type', 'text/plain')
.send('user is tobi')
.expect(200, '{}', done)
.expect(200, '', done)
})
})
@@ -225,7 +225,7 @@ describe('express.text()', function () {
.post('/')
.set('Content-Type', 'text/xml')
.send('<user>tobi</user>')
.expect(200, '{}', done)
.expect(200, '', done)
})
})