@@ -7,13 +7,16 @@ import fs from 'node:fs';
7
7
import { BehaviorEvent , PuppeteerBehaviorBus } from './behavior_bus.js' ;
8
8
import { BEHAVIORS } from './example_behaviors.js' ;
9
9
10
+ process . chdir ( import . meta. dirname ) ;
11
+
10
12
const sleep = ( ms ) => new Promise ( resolve => setTimeout ( resolve , ms ) ) ;
11
13
14
+
12
15
const linkPuppeteerBusToWindowBus = async ( PuppeteerBehaviorBus , page ) => {
13
16
// 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 ] ;
15
18
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 ] ;
17
20
await page . evaluate ( behaviors_js ) ;
18
21
19
22
// set up console log forwarding
@@ -24,7 +27,6 @@ const linkPuppeteerBusToWindowBus = async (PuppeteerBehaviorBus, page) => {
24
27
// set up BehaviorBus inside window context
25
28
await page . evaluate ( ( ) => {
26
29
window . BehaviorBus = new WindowBehaviorBus ( window . BEHAVIORS , window )
27
- console . log ( `[window] initialized global.BehaviorBus = WindowBehaviorBus()` ) ;
28
30
} ) ;
29
31
30
32
// set up forwarding from WindowBehaviorBus -> PuppeteerBehaviorBus
@@ -72,9 +74,9 @@ const linkPuppeteerBusToServiceWorkerBus = async (PuppeteerBehaviorBus, browser,
72
74
} ) ;
73
75
74
76
// 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 ] ;
76
78
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 ] ;
78
80
await service_worker . evaluate ( behaviors_js ) ;
79
81
80
82
// set up BehaviorBus inside serviceWorker context
0 commit comments