Skip to content

Commit

Permalink
Downstream test: guarding against getting stuck in tty mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
ariya committed Feb 3, 2016
1 parent dc2406c commit 9b741e8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/downstream.js
Expand Up @@ -45,7 +45,8 @@ function test_project(project, repo) {
process.chdir(project);
console.log();
console.log('HEAD is');
execute('git log -n1');
execute('git log -n1 > commit.top');
console.log(fs.readFileSync('commit.top', 'utf-8'));

console.log();
execute('npm install');
Expand Down Expand Up @@ -96,9 +97,9 @@ test_downstream({
'esmangle': 'https://github.com/estools/esmangle.git',
'escomplex-js': 'https://github.com/philbooth/escomplex-js.git',
'js2coffee': 'https://github.com/js2coffee/js2coffee.git',
// 'jscs': 'https://github.com/jscs-dev/node-jscs.git',
'redeyed': 'https://github.com/thlorenz/redeyed.git',
'jsfmt': 'https://github.com/rdio/jsfmt.git',
'istanbul': 'https://github.com/gotwarlost/istanbul.git',
'documentjs': 'https://github.com/bitovi/documentjs.git'
'documentjs': 'https://github.com/bitovi/documentjs.git',
'jscs': 'https://github.com/jscs-dev/node-jscs.git'
});

0 comments on commit 9b741e8

Please sign in to comment.