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>
33 lines
779 B
JavaScript
33 lines
779 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var spawn = require('child_process').spawn;
|
|
var path = require('path');
|
|
|
|
var exits = 0;
|
|
|
|
var exitScript = path.join(common.fixturesDir, 'exit.js');
|
|
var exitChild = spawn(process.argv[0], [exitScript, 23]);
|
|
exitChild.on('exit', function(code, signal) {
|
|
assert.strictEqual(code, 23);
|
|
assert.strictEqual(signal, null);
|
|
|
|
exits++;
|
|
});
|
|
|
|
|
|
|
|
var errorScript = path.join(common.fixturesDir,
|
|
'child_process_should_emit_error.js');
|
|
var errorChild = spawn(process.argv[0], [errorScript]);
|
|
errorChild.on('exit', function(code, signal) {
|
|
assert.ok(code !== 0);
|
|
assert.strictEqual(signal, null);
|
|
|
|
exits++;
|
|
});
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(2, exits);
|
|
});
|