feat: refine UI, improve UX, optimize the analysis pipeline, and add character standing positions
This commit is contained in:
14
tests/unit/location-available-slots.test.ts
Normal file
14
tests/unit/location-available-slots.test.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { describe, expect, it } from 'vitest'
|
||||
import { formatLocationAvailableSlotsText } from '@/lib/location-available-slots'
|
||||
|
||||
describe('location available slots', () => {
|
||||
it('formats english slot headers without leaking chinese labels', () => {
|
||||
const text = formatLocationAvailableSlotsText(
|
||||
['left side near the wall'],
|
||||
'en',
|
||||
)
|
||||
|
||||
expect(text).toBe('Available character slots:\n- left side near the wall')
|
||||
expect(text).not.toContain('可站位置:')
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user