Skip to content

Commit 4677f9a

Browse files
committed
fix relative dir paths
1 parent 1573852 commit 4677f9a

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/example_puppeteer_driver.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ import fs from 'node:fs';
77
import { BehaviorEvent, PuppeteerBehaviorBus } from './behavior_bus.js';
88
import { BEHAVIORS } from './example_behaviors.js';
99

10+
process.chdir(import.meta.dirname);
11+
1012
const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms));
1113

14+
1215
const linkPuppeteerBusToWindowBus = async (PuppeteerBehaviorBus, page) => {
1316
// add the behavior bus code & behaviors code to the page
14-
const behavior_bus_js = fs.readFileSync('./behavior_bus.js', 'utf8').split('\nexport {')[0];
17+
const behavior_bus_js = fs.readFileSync(`./behavior_bus.js`, 'utf8').split('\nexport {')[0];
1518
await page.evaluate(behavior_bus_js);
16-
const behaviors_js = fs.readFileSync('./example_behaviors.js', 'utf8').split('\nexport {')[0];
19+
const behaviors_js = fs.readFileSync(`./example_behaviors.js`, 'utf8').split('\nexport {')[0];
1720
await page.evaluate(behaviors_js);
1821

1922
// set up console log forwarding
@@ -24,7 +27,6 @@ const linkPuppeteerBusToWindowBus = async (PuppeteerBehaviorBus, page) => {
2427
// set up BehaviorBus inside window context
2528
await page.evaluate(() => {
2629
window.BehaviorBus = new WindowBehaviorBus(window.BEHAVIORS, window)
27-
console.log(`[window] initialized global.BehaviorBus = WindowBehaviorBus()`);
2830
});
2931

3032
// set up forwarding from WindowBehaviorBus -> PuppeteerBehaviorBus
@@ -72,9 +74,9 @@ const linkPuppeteerBusToServiceWorkerBus = async (PuppeteerBehaviorBus, browser,
7274
});
7375

7476
// add the behavior bus code & behaviors code to the page
75-
const behavior_bus_js = fs.readFileSync('./behavior_bus.js', 'utf8').split('\nexport {')[0];
77+
const behavior_bus_js = fs.readFileSync(`./behavior_bus.js`, 'utf8').split('\nexport {')[0];
7678
await service_worker.evaluate(behavior_bus_js);
77-
const behaviors_js = fs.readFileSync('./example_behaviors.js', 'utf8').split('\nexport {')[0];
79+
const behaviors_js = fs.readFileSync(`./example_behaviors.js`, 'utf8').split('\nexport {')[0];
7880
await service_worker.evaluate(behaviors_js);
7981

8082
// set up BehaviorBus inside serviceWorker context

0 commit comments

Comments
 (0)