mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
f29762f4dd
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>
30 lines
729 B
JavaScript
30 lines
729 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var path = require('path');
|
|
var child_process = require('child_process');
|
|
|
|
var wrong_script = path.join(common.fixturesDir, 'cert.pem');
|
|
|
|
var p = child_process.spawn(process.execPath, [
|
|
'-e',
|
|
'try { require(process.argv[1]); } catch (e) { console.log(e.stack); }',
|
|
wrong_script
|
|
]);
|
|
|
|
p.stderr.on('data', function(data) {
|
|
assert(false, 'Unexpected stderr data: ' + data);
|
|
});
|
|
|
|
var output = '';
|
|
|
|
p.stdout.on('data', function(data) {
|
|
output += data;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert(/BEGIN CERT/.test(output));
|
|
assert(/^\s+\^/m.test(output));
|
|
assert(/Invalid left-hand side expression in prefix operation/.test(output));
|
|
});
|