🛠️ Improve code readability by reformatting console logs and removing unnecessary whitespace

This commit is contained in:
2026-01-30 04:53:23 +00:00
parent 9fdfbb22d8
commit 52cf322a00
3 changed files with 32 additions and 22 deletions

View File

@@ -87,10 +87,10 @@ describe('DeveloperTools', () => {
// Note: This test verifies the component structure, not actual NODE_ENV behavior
// since process.env changes don't affect already-evaluated computed properties
const wrapper = mount(DeveloperTools);
// isAvailable is a computed property that exists
expect(wrapper.vm.isAvailable).toBeDefined();
// In dev mode (which is what beforeEach sets), it should be true
expect(wrapper.vm.isAvailable).toBe(true);
});