4b1a1da652
closes #553 Update test: application -> use() should throw if not a function Fix lint Use arrow function Refactor test using arrow function Remove non mandatory brackets fix for merge Fix: missing refactor after merge Use arrow function for old generator
18 lines
422 B
JavaScript
18 lines
422 B
JavaScript
|
|
'use strict';
|
|
|
|
const request = require('../helpers/context').request;
|
|
const assert = require('assert');
|
|
|
|
describe('ctx.length', () => {
|
|
it('should return length in content-length', () => {
|
|
const req = request();
|
|
req.header['content-length'] = '10';
|
|
req.length.should.equal(10);
|
|
});
|
|
|
|
describe('with no content-length present', () => {
|
|
const req = request();
|
|
assert(null == req.length);
|
|
});
|
|
});
|