(id: number)
| 3 | import { usePointPickingStore, type SelectedPoint } from './pointPickingStore'; |
| 4 | |
| 5 | function point(id: number): SelectedPoint { |
| 6 | return { |
| 7 | position: new THREE.Vector3(id, 0, 0), |
| 8 | point3DId: BigInt(id), |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | describe('point picking store', () => { |
| 13 | beforeEach(() => { |
no outgoing calls
no test coverage detected