Skip to content

Commit

Permalink
Omit broken tests for the moment, see #52
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Dec 1, 2018
1 parent d095374 commit 75b17c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion js/local/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ const _ = require( '../../../sherpa/lib/lodash-4.17.4.js' ); // eslint-disable-l

// Find repos that have qunit tests by searching for them
const unitTests = activeRepos.filter( repo => {
return fs.existsSync( getUnitTestFile( repo ) ) && repo !== 'scenery' && repo !== 'scenery-phet';
return fs.existsSync( getUnitTestFile( repo ) ) &&
repo !== 'scenery' && // Takes too long
repo !== 'scenery-phet' && // Takes too long
repo !== 'faradays-law'; // Broken at the moment, see https://github.com/phetsims/faradays-law/issues/147
} ).map( getUnitTestURL );

const timeout = 5000;
Expand Down

0 comments on commit 75b17c4

Please sign in to comment.