@@ -8,7 +8,6 @@ import assert from 'node:assert';
88import { afterEach , before , beforeEach , describe , it } from 'node:test' ;
99
1010import { AggregatedIssue } from '../../node_modules/chrome-devtools-frontend/mcp/mcp.js' ;
11- import { setIssuesEnabled } from '../../src/features.js' ;
1211import { loadIssueDescriptions } from '../../src/issue-descriptions.js' ;
1312import { McpResponse } from '../../src/McpResponse.js' ;
1413import {
@@ -59,12 +58,6 @@ describe('console', () => {
5958 } ) ;
6059
6160 describe ( 'issues' , ( ) => {
62- beforeEach ( ( ) => {
63- setIssuesEnabled ( true ) ;
64- } ) ;
65- afterEach ( ( ) => {
66- setIssuesEnabled ( false ) ;
67- } ) ;
6861 it ( 'lists issues' , async ( ) => {
6962 await withMcpContext ( async ( response , context ) => {
7063 const page = await context . newPage ( ) ;
@@ -155,12 +148,6 @@ describe('console', () => {
155148
156149 describe ( 'issues type' , ( ) => {
157150 const server = serverHooks ( ) ;
158- beforeEach ( ( ) => {
159- setIssuesEnabled ( true ) ;
160- } ) ;
161- afterEach ( ( ) => {
162- setIssuesEnabled ( false ) ;
163- } ) ;
164151
165152 it ( 'gets issue details with node id parsing' , async t => {
166153 await withMcpContext ( async ( response , context ) => {
0 commit comments