mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 01:07:57 +00:00

Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
24 lines
719 B
JavaScript
24 lines
719 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var http = require('http');
|
|
var childProcess = require('child_process');
|
|
|
|
var s = http.createServer(function(request, response) {
|
|
response.writeHead(304);
|
|
response.end();
|
|
});
|
|
|
|
s.listen(common.PORT, function() {
|
|
childProcess.exec('curl -i http://127.0.0.1:' + common.PORT + '/',
|
|
function(err, stdout, stderr) {
|
|
if (err) throw err;
|
|
s.close();
|
|
common.error('curled response correctly');
|
|
common.error(common.inspect(stdout));
|
|
});
|
|
});
|
|
|
|
console.log('Server running at http://127.0.0.1:' + common.PORT + '/');
|