File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const nodeArgs = [
5050 './build/tests/setup.js' ,
5151 '--no-warnings=ExperimentalWarning' ,
5252 '--test-reporter' ,
53- ' spec',
53+ ( process . env [ 'NODE_TEST_REPORTER' ] ?? process . env [ 'CI' ] ) ? ' spec' : 'dot ',
5454 '--test-force-exit' ,
5555 '--test' ,
5656 '--test-timeout=60000' ,
Original file line number Diff line number Diff line change @@ -105,7 +105,9 @@ describe('network', () => {
105105 await withMcpContext ( async ( response , context ) => {
106106 await context . setUpNetworkCollectorForTesting ( ) ;
107107 const page = context . getSelectedPage ( ) ;
108- await page . goto ( server . getRoute ( '/redirect' ) ) ;
108+ await page . goto ( server . getRoute ( '/redirect' ) , {
109+ waitUntil : 'networkidle0' ,
110+ } ) ;
109111 await listNetworkRequests . handler (
110112 {
111113 params : {
You can’t perform that action at this time.
0 commit comments