@@ -1507,14 +1507,19 @@ async function runEntriesMode() {
15071507 ) ,
15081508 path . join ( exampleDir , 'dist/server/server.js' ) ,
15091509 ] ;
1510+ const devtoolsMarkers = [
1511+ 'data-solid-dev-toolbar' ,
1512+ 'data-solid-functions-viewer' ,
1513+ 'Start Devtools Version' ,
1514+ ] ;
15101515 const customEntryDevtoolsLeaks = customEntryBundles . filter ( ( file ) => {
15111516 const source = readFileSync ( file , 'utf-8' ) ;
1512- return source . includes ( 'data-solid-dev-toolbar' ) || source . includes ( 'start-devtools' ) ;
1517+ return devtoolsMarkers . some ( ( marker ) => source . includes ( marker ) ) ;
15131518 } ) ;
15141519 record (
15151520 mode ,
15161521 'prod' ,
1517- 'custom entry devtools code is removed from production' ,
1522+ 'custom entry devtools UI is removed from production' ,
15181523 customEntryDevtoolsLeaks . length === 0 ,
15191524 customEntryDevtoolsLeaks . join ( ', ' ) ,
15201525 ) ;
@@ -3362,7 +3367,7 @@ async function runVitestMode() {
33623367 let projectsOut = '' ;
33633368 let projectsOk = false ;
33643369 try {
3365- projectsOut = execSync ( 'pnpm exec vitest run' , {
3370+ projectsOut = execSync ( 'pnpm exec vitest run --reporter=verbose ' , {
33663371 cwd : exampleDir ,
33673372 stdio : 'pipe' ,
33683373 timeout : 180000 ,
@@ -3374,8 +3379,8 @@ async function runVitestMode() {
33743379 }
33753380 const projectsPass =
33763381 projectsOk &&
3377- / \| c l i e n t \| .* p o s t u r e \. t e s t \. t s x \( 3 t e s t s \) / . test ( projectsOut ) &&
3378- / \| s e r v e r \| .* s e r v e r - p o s t u r e \. t e s t \. t s x \( 3 t e s t s \) / . test ( projectsOut ) &&
3382+ / \| c l i e n t \| .* p o s t u r e \. t e s t \. t s x / . test ( projectsOut ) &&
3383+ / \| s e r v e r \| .* s e r v e r - p o s t u r e \. t e s t \. t s x / . test ( projectsOut ) &&
33793384 / 6 p a s s e d / . test ( projectsOut ) ;
33803385 record (
33813386 mode ,
0 commit comments