Skip to content

Commit f1b52c6

Browse files
committed
logs
1 parent d44ab3f commit f1b52c6

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

packages/deparser/test-utils/index.ts

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)