Skip to content

Commit

Permalink
bug fix for node_modules requires, phetsims/chipper#1498
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Oct 28, 2024
1 parent a84e83c commit d9f3e43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/node-client/runTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

const _ = require( 'lodash' );
const sendTestResult = require( './sendTestResult.js' );
const puppeteer = require( '../../../perennial/node_modules/puppeteer.js' );
const puppeteer = require( '../../../perennial/node_modules/puppeteer' );
const browserPageLoad = require( '../../../perennial/js/common/browserPageLoad.js' );
const winston = require( 'winston' );
const path = require( 'path' );
Expand Down
2 changes: 1 addition & 1 deletion js/server/playwrightCTClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
const assert = require( 'assert' );
const playwrightLoad = require( '../../../perennial/js/common/playwrightLoad.js' );
const { parentPort } = require( 'worker_threads' );
const playwright = require( '../../../perennial/node_modules/playwright.js' );
const playwright = require( '../../../perennial/node_modules/playwright' );

process.on( 'SIGINT', () => process.exit() );

Expand Down

0 comments on commit d9f3e43

Please sign in to comment.