mirror of
https://github.com/strapi/strapi.git
synced 2025-08-01 21:36:25 +00:00
22 lines
517 B
JavaScript
22 lines
517 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const response = require('../helpers/context').response;
|
||
|
|
||
|
describe('res.header', function () {
|
||
|
it('should return the response header object', function () {
|
||
|
const res = response();
|
||
|
res.set('X-Foo', 'bar');
|
||
|
res.headers.should.eql({
|
||
|
'x-foo': 'bar'
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('when res._headers not present', function () {
|
||
|
it('should return empty object', function () {
|
||
|
const res = response();
|
||
|
res.res._headers = null;
|
||
|
res.headers.should.eql({});
|
||
|
});
|
||
|
});
|
||
|
});
|