mirror of
https://github.com/strapi/strapi.git
synced 2025-08-01 05:17:14 +00:00
19 lines
474 B
JavaScript
19 lines
474 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const response = require('../helpers/context').response;
|
||
|
|
||
|
describe('res.writable', function () {
|
||
|
it('should return the request is writable', function () {
|
||
|
const res = response();
|
||
|
res.writable.should.be.ok;
|
||
|
});
|
||
|
|
||
|
describe('when res.socket not present', function () {
|
||
|
it('should return the request is not writable', function () {
|
||
|
const res = response();
|
||
|
res.res.socket = null;
|
||
|
res.writable.should.not.be.ok;
|
||
|
});
|
||
|
});
|
||
|
});
|