- Move top-level engine and e2e prefixed test files under domain folders - Update fixture path helpers after moving render and pen tests - Add lint coverage to prevent new top-level prefixed test files - Refresh testing docs for the new fig and layout paths
24 lines
756 B
TypeScript
24 lines
756 B
TypeScript
import { describe, test, expect } from 'bun:test'
|
|
|
|
import { createEditorStore } from '@/app/editor/session'
|
|
|
|
describe('setPlannedFilePath', () => {
|
|
test('sets document name from file path', () => {
|
|
const store = createEditorStore()
|
|
store.setPlannedFilePath('/tmp/projects/my-design.fig')
|
|
expect(store.state.documentName).toBe('my-design')
|
|
})
|
|
|
|
test('handles Windows-style paths', () => {
|
|
const store = createEditorStore()
|
|
store.setPlannedFilePath('C:\\Users\\test\\design.fig')
|
|
expect(store.state.documentName).toBe('design')
|
|
})
|
|
|
|
test('handles path without extension', () => {
|
|
const store = createEditorStore()
|
|
store.setPlannedFilePath('/tmp/Untitled')
|
|
expect(store.state.documentName).toBe('Untitled')
|
|
})
|
|
})
|