mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
2016ad3035
Replace usage of common.fixturesDir by using common.fixtures module in test/parallel/test-pipe-head PR-URL: https://github.com/nodejs/node/pull/15868 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
18 lines
478 B
JavaScript
18 lines
478 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
const assert = require('assert');
|
|
|
|
const exec = require('child_process').exec;
|
|
|
|
const nodePath = process.argv[0];
|
|
const script = fixtures.path('print-10-lines.js');
|
|
|
|
const cmd = `"${nodePath}" "${script}" | head -2`;
|
|
|
|
exec(cmd, common.mustCall(function(err, stdout, stderr) {
|
|
assert.ifError(err);
|
|
const lines = stdout.split('\n');
|
|
assert.strictEqual(3, lines.length);
|
|
}));
|