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
12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
|
|
'use strict';
|
|
|
|
const response = require('../helpers/context').response;
|
|
const Stream = require('stream');
|
|
|
|
describe('res.socket', () => {
|
|
it('should return the request socket object', () => {
|
|
const res = response();
|
|
res.socket.should.be.instanceOf(Stream);
|
|
});
|
|
});
|