Skip to content

Commit

Permalink
Renamed testPage=>runUnitTests, see #52
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Oct 10, 2018
1 parent 283356d commit beed5be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions js/local/test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2018, University of Colorado Boulder
const testPage = require( './testPage' );
const runUnitTests = require( './runUnitTests' );
const runPage = require( './runPage' );
const puppeteer = require( 'puppeteer' );

Expand All @@ -8,7 +8,7 @@ const puppeteer = require( 'puppeteer' );

const browser = await puppeteer.launch();

var x = await testPage( browser, 'http://localhost/axon/axon-tests.html' );
var x = await runUnitTests( browser, 'http://localhost/axon/axon-tests.html' );
console.log( x );
var z = await runPage( browser, 'http://localhost/faradays-law/faradays-law_en.html?brand=phet&ea&fuzzMouse' );
console.log( z );
Expand Down

0 comments on commit beed5be

Please sign in to comment.