Skip to content

Commit

Permalink
Enable assertions for unit tests, see #52
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Dec 5, 2018
1 parent aea8129 commit f6cee76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/local/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ const _ = require( '../../../sherpa/lib/lodash-4.17.4.js' ); // eslint-disable-l
const getUnitTestURL = repo => {
let suffix = '';
if ( repo === 'phet-io' ) {
suffix = '?brand=phet-io';
suffix = '&brand=phet-io';
}
return `http://localhost/${repo}/${repo}-tests.html${suffix}`;
return `http://localhost/${repo}/${repo}-tests.html?ea${suffix}`;
}; // TODO: support arbitrary prefix for localhost

// Find repos that have qunit tests by searching for them
Expand Down

0 comments on commit f6cee76

Please sign in to comment.