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
20 lines
484 B
JavaScript
20 lines
484 B
JavaScript
|
|
'use strict';
|
|
|
|
const response = require('../helpers/context').response;
|
|
|
|
describe('res.header', () => {
|
|
it('should return the response header object', () => {
|
|
const res = response();
|
|
res.set('X-Foo', 'bar');
|
|
res.headers.should.eql({ 'x-foo': 'bar' });
|
|
});
|
|
|
|
describe('when res._headers not present', () => {
|
|
it('should return empty object', () => {
|
|
const res = response();
|
|
res.res._headers = null;
|
|
res.headers.should.eql({});
|
|
});
|
|
});
|
|
});
|