File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -132,7 +132,6 @@ export class McpContext implements Context {
132132
133133 #nextSnapshotId = 1 ;
134134 #traceResults: TraceResult [ ] = [ ] ;
135- #universeManager: UniverseManager ;
136135
137136 #locatorClass: typeof Locator ;
138137 #options: McpContextOptions ;
@@ -149,7 +148,6 @@ export class McpContext implements Context {
149148 this . logger = logger ;
150149 this . #locatorClass = locatorClass ;
151150 this . #options = options ;
152- this . #universeManager = new UniverseManager ( this . browser ) ;
153151
154152 this . #networkCollector = new NetworkCollector ( this . browser ) ;
155153
@@ -177,14 +175,12 @@ export class McpContext implements Context {
177175
178176 async #init( ) {
179177 const pages = await this . createPagesSnapshot ( ) ;
180- await this . #universeManager. init ( pages ) ;
181178 await this . #networkCollector. init ( pages ) ;
182179 await this . #consoleCollector. init ( pages ) ;
183180 await this . #devtoolsUniverseManager. init ( pages ) ;
184181 }
185182
186183 dispose ( ) {
187- this . #universeManager. dispose ( ) ;
188184 this . #networkCollector. dispose ( ) ;
189185 this . #consoleCollector. dispose ( ) ;
190186 this . #devtoolsUniverseManager. dispose ( ) ;
You can’t perform that action at this time.
0 commit comments