Skip to content

Commit 446f32f

Browse files
committed
drop univermgr addition as its already done
Change-Id: I7cff8cff76bbd606dde471847d841c5fb0c05b1d
1 parent ce92886 commit 446f32f

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/McpContext.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)