File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
packages/deparser/test-utils Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -101,10 +101,10 @@ export class TestUtils {
101101 if ( stmt . stmt ) {
102102 const outSql = deparse ( stmt . stmt ) ;
103103
104- console . log ( `\n🔍 DEBUGGING SQL COMPARISON for test: ${ testName } ` ) ;
105- console . log ( `📥 INPUT SQL: ${ sql } ` ) ;
106- console . log ( `📤 DEPARSED SQL: ${ outSql } ` ) ;
107- console . log ( `🔄 SQL MATCH: ${ sql . trim ( ) === outSql . trim ( ) ? '✅ EXACT MATCH' : '❌ DIFFERENT' } ` ) ;
104+ // console.log(`\n🔍 DEBUGGING SQL COMPARISON for test: ${testName}`);
105+ // console.log(`📥 INPUT SQL: ${sql}`);
106+ // console.log(`📤 DEPARSED SQL: ${outSql}`);
107+ // console.log(`🔄 SQL MATCH: ${sql.trim() === outSql.trim() ? '✅ EXACT MATCH' : '❌ DIFFERENT'}`);
108108
109109 let reparsed ;
110110 try {
@@ -216,11 +216,8 @@ export class FixtureTestUtils extends TestUtils {
216216 console . log ( 'no filters provided, skipping tests.' ) ;
217217 return ;
218218 }
219- console . log ( `\n🚀 STARTING FIXTURE TESTS with filters:` , filters ) ;
220219 const entries = this . getTestEntries ( filters ) ;
221220 for ( const [ relativePath , sql ] of entries ) {
222- console . log ( `\n📁 Processing fixture: ${ relativePath } ` ) ;
223- console . log ( `📝 SQL Content: ${ sql } ` ) ;
224221 try {
225222 await this . expectAstMatch ( relativePath , sql ) ;
226223 } catch ( err ) {
You can’t perform that action at this time.
0 commit comments