File tree Expand file tree Collapse file tree 3 files changed +21
-18
lines changed Expand file tree Collapse file tree 3 files changed +21
-18
lines changed Original file line number Diff line number Diff line change @@ -35,17 +35,19 @@ jobs:
3535    runs-on : ${{ matrix.os }} 
3636    strategy :
3737      matrix :
38-         os : [ubuntu-latest, macos-latest,  windows-latest] 
38+         os : [windows-latest] 
3939        browser : [chromium] 
40+         #  os: [ubuntu-latest, macos-latest, windows-latest]
41+         #  browser: [chromium]
4042        rolldown : [false] 
41-         include :
42-           - os : ubuntu-latest 
43-             browser : firefox 
44-           - os : macos-latest 
45-             browser : webkit 
46-           - os : ubuntu-latest 
47-             browser : chromium 
48-             rolldown : true 
43+         #   include:
44+         #     - os: ubuntu-latest
45+         #       browser: firefox
46+         #     - os: macos-latest
47+         #       browser: webkit
48+         #     - os: ubuntu-latest
49+         #       browser: chromium
50+         #       rolldown: true
4951      fail-fast : false 
5052    steps :
5153      - uses : actions/checkout@v4 
Original file line number Diff line number Diff line change @@ -107,16 +107,17 @@ test.describe.configure({ mode: 'serial' })
107107
108108test . describe . only ( ( )  =>  { 
109109  // disabled by default 
110-   if  ( process . env . TEST_ISOLATED  !==  'true' )  return 
110+   //  if (process.env.TEST_ISOLATED !== 'true') return
111111
112112  let  tmpRoot  =  '/tmp/test-vite-rsc' 
113113  test . beforeAll ( async  ( )  =>  { 
114-     try  { 
115-       await  setupIsolatedFixture ( {  src : 'examples/basic' ,  dest : tmpRoot  } ) 
116-     }  catch  ( e )  { 
117-       console . error ( '[setupIsolatedFixture]' ,  e ) 
118-       throw  e 
119-     } 
114+     await  setupIsolatedFixture ( {  src : 'examples/basic' ,  dest : tmpRoot  } ) 
115+     // try { 
116+     //   await setupIsolatedFixture({ src: 'examples/basic', dest: tmpRoot }) 
117+     // } catch (e) { 
118+     //   console.error('[setupIsolatedFixture]', e) 
119+     //   throw e 
120+     // } 
120121  } ) 
121122
122123  test . describe ( 'dev-isolated' ,  ( )  =>  { 
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ export async function setupIsolatedFixture(options: {
170170  } ) 
171171
172172  // install 
173-   console . log ( '[setupIsolatedFixture] before pnpm' ) 
173+   console . error ( '[setupIsolatedFixture] before pnpm' ) 
174174  // await x('pnpm', ['i'], { 
175175  //   throwOnError: true, 
176176  //   nodeOptions: { 
@@ -183,7 +183,7 @@ export async function setupIsolatedFixture(options: {
183183  //     ], 
184184  //   }, 
185185  // }) 
186-   console . log ( '[setupIsolatedFixture] after pnpm' ) 
186+   console . error ( '[setupIsolatedFixture] after pnpm' ) 
187187} 
188188
189189function  editFileJson ( filepath : string ,  edit : ( s : string )  =>  string )  { 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments