Skip to content

Commit

Permalink
compare all stable sims for CTQ, #1350
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Kauzmann <michael.kauzmann@colorado.edu>
  • Loading branch information
zepumph committed Apr 30, 2024
1 parent bf9338a commit 6f9cbeb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions js/phet-io/phetioCompareAPISets.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@ module.exports = async ( repos, proposedAPIs, options ) => {

if ( comparisonData.breakingProblems.length ) {
ok = false;
console.log( `${repo} BREAKING PROBLEMS` );
console.log( comparisonData.breakingProblems.join( '\n' ) );
console.log( '\n' );
console.error( `${repo} BREAKING PROBLEMS` );
console.error( comparisonData.breakingProblems.join( '\n' ) );
console.error( '\n' );
}

if ( comparisonData.designedProblems.length ) {
ok = false;
console.log( `${repo} DESIGN PROBLEMS` );
console.log( comparisonData.designedProblems.join( '\n' ) );
console.log( '\n' );
console.error( `${repo} DESIGN PROBLEMS` );
console.error( comparisonData.designedProblems.join( '\n' ) );
console.error( '\n' );
}

if ( options.delta ) {
Expand Down

0 comments on commit 6f9cbeb

Please sign in to comment.