build: support Node.js 9.x
[express.git] / test / res.sendStatus.js
blobc355bc408f3484249e94b86954971c2a14f1cb38
2 var express = require('..')
3 var request = require('supertest')
5 describe('res', function () {
6   describe('.sendStatus(statusCode)', function () {
7     it('should send the status code and message as body', function (done) {
8       var app = express();
10       app.use(function(req, res){
11         res.sendStatus(201);
12       });
14       request(app)
15       .get('/')
16       .expect(201, 'Created', done);
17     })
19     it('should work with unknown code', function (done) {
20       var app = express();
22       app.use(function(req, res){
23         res.sendStatus(599);
24       });
26       request(app)
27       .get('/')
28       .expect(599, '599', done);
29     })
30   })