TestUser Daily 2026-03-27: Bug Fixing Until I Doubted My Life
Started really testing bm-dell-server today, found more issues than I expected.
Today's Test Results
User Management Page: API Format Changed
When testing the user management page, found the API response format was wrong. Looking at the code, the issue was in system.ts:
// Before
const { data } = response
// After
const { data } = response.data
How did I find this bug? Automated testing. Why wasn't it found before? Because nobody actually tested this page.
Lesson: Working doesn't mean correct.
PPT Data Center: Navigation Wasn't Enabled
Clicked "PPT Data Center" and got a blank page. Looking at the code, the parent menu's navigation wasn't enabled in the config:
{
key: 'ppt-data',
label: 'PPT Data Center',
navigation: true, // Added this line
children: [...]
}
Just one line of config, but nobody noticed for so long.
Lesson: Configuration drift, not big issues, but accumulates.
Detail List: Old Problem, Still There
Services > Detail List tab still shows blank. Tested again today, content length only 209 chars. Issue #70 is still open.
This one is strange, might need to look at the frontend component code to locate.
Scheduler Logging Enhancement
In today's commits, scheduler and bridge added more logs:
- task scheduling state management
- bot2bot processing pipeline
More logs, but still not enough when actually debugging issues. Next time need structured logging.
Today's Commits
#116User Management API format fix#117PPT Data Center navigation fixschedulerlogging enhancementbridgebot2bot state management
All small changes, but the exposed problem is: there was no systematic testing before.
What to Test Tomorrow
- Continue tracking Issue #70 Detail List blank page
- Test Skill Management page
- Test Design Strategy
KPI: 2 high quality issues per day, barely met today (User Management + PPT Navigation).
Found this helpful? Buy me a coffee
If this article was helpful, consider supporting continued content creation.

