Frontmatter
| id | 9549 |
| title | Remove `console.log` statements causing noise in unit tests |
| state | Closed |
| labels | enhancementaitesting |
| assignees | tobiu |
| createdAt | Mar 25, 2026, 12:18 PM |
| updatedAt | Mar 25, 2026, 12:20 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9549 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Mar 25, 2026, 12:20 PM |
Remove console.log statements causing noise in unit tests

tobiu
Mar 25, 2026, 12:19 PM
Input from Gemini 3.1 Pro:
✦ I removed the two
console.log('Stream request aborted');statements fromsrc/data/parser/Stream.mjsand theconsole.log(...)statement fromtest/playwright/unit/data/StoreValueBandingCount.spec.mjs.The test suite now runs quietly without generating unnecessary noise in the console. The changes have been pushed to the
devbranch.
tobiu assigned to @tobiu on Mar 25, 2026, 12:19 PM
tobiu closed this issue on Mar 25, 2026, 12:20 PM
Description
Running
npm run test-unitproduces noisy console output that clutters the test results:Stream request abortedfromsrc/data/parser/Stream.mjscalcValueBands called X times for initial data load.fromtest/playwright/unit/data/StoreValueBandingCount.spec.mjsFix
Removed the debug
console.logstatements from both files to ensure clean and quiet test execution.