Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Downstream test: guarding against getting stuck in tty mode. #1452

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 3 additions & 10 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 @@ -92,13 +93,5 @@ function test_downstream(projects) {


test_downstream({
'escope': 'https://github.com/estools/escope.git',
'esmangle': 'https://github.com/estools/esmangle.git',
'escomplex-js': 'https://github.com/philbooth/escomplex-js.git',
'js2coffee': 'https://github.com/js2coffee/js2coffee.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'
// 'jscs': 'https://github.com/jscs-dev/node-jscs.git'
'jscs': 'https://github.com/jscs-dev/node-jscs.git'
});