File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -102,7 +102,9 @@ describe('e2e', () => {
102102 continue ;
103103 }
104104 if (
105- maybeTool . annotations ?. conditions ?. includes ( 'experimentalInteropTools' )
105+ maybeTool . annotations ?. conditions ?. includes (
106+ 'experimentalInteropTools' ,
107+ )
106108 ) {
107109 continue ;
108110 }
@@ -126,7 +128,6 @@ describe('e2e', () => {
126128 ) ;
127129 } ) ;
128130
129-
130131 it ( 'has experimental interop tools' , async ( ) => {
131132 await withClient (
132133 async client => {
Original file line number Diff line number Diff line change @@ -328,6 +328,9 @@ describe('pages', () => {
328328 it ( 'returns the tab id' , async ( ) => {
329329 await withMcpContext ( async ( response , context ) => {
330330 const page = context . getSelectedPage ( ) ;
331+ console . log ( page ) ;
332+ // @ts -expect-error _tabId is internal.
333+ assert . ok ( typeof page . _tabId === 'string' ) ;
331334 // @ts -expect-error _tabId is internal.
332335 page . _tabId = 'test-tab-id' ;
333336 await getTabId . handler ( { params : { pageId : 1 } } , response , context ) ;
You can’t perform that action at this time.
0 commit comments