mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 02:06:12 +00:00

Enable `space-unary-ops` in `.eslintrc`. This prohibits things like: i ++ // use `i++` instead typeof(foo) // use `typeof foo` or `typeof (foo)` instead Ref: https://github.com/nodejs/node/pull/4772#discussion_r51732299 PR-URL: https://github.com/nodejs/node/pull/5063 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com>
36 lines
810 B
JavaScript
36 lines
810 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var testResBody = 'other stuff!\n';
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
assert.ok(!('date' in req.headers),
|
|
'Request headers contained a Date.');
|
|
res.writeHead(200, {
|
|
'Content-Type': 'text/plain'
|
|
});
|
|
res.end(testResBody);
|
|
});
|
|
server.listen(common.PORT);
|
|
|
|
|
|
server.addListener('listening', function() {
|
|
var options = {
|
|
port: common.PORT,
|
|
path: '/',
|
|
method: 'GET'
|
|
};
|
|
var req = http.request(options, function(res) {
|
|
assert.ok('date' in res.headers,
|
|
'Response headers didn\'t contain a Date.');
|
|
res.addListener('end', function() {
|
|
server.close();
|
|
process.exit();
|
|
});
|
|
res.resume();
|
|
});
|
|
req.end();
|
|
});
|