import { describe, it, expect } from 'vitest' import { countWords } from '../../src/main/services/word-count' describe('countWords', () => { it('counts CJK characters excluding whitespace', () => { expect(countWords('林远深吸一口气')).toBe(7) }) it('returns 0 for empty', () => { expect(countWords('')).toBe(0) }) })