Files
kestrelos/test/unit/poiConstants.spec.js
Madison Grubb b0e8dd7ad9
Some checks failed
ci/woodpecker/pr/pr Pipeline failed
make kestrel a tak server, so that it can send and receive pois as cots data
2026-02-17 10:42:53 -05:00

10 lines
330 B
JavaScript

import { describe, it, expect } from 'vitest'
import { POI_ICON_TYPES } from '../../server/utils/poiConstants.js'
describe('poiConstants', () => {
it('exports POI_ICON_TYPES as frozen array', () => {
expect(POI_ICON_TYPES).toEqual(['pin', 'flag', 'waypoint'])
expect(Object.isFrozen(POI_ICON_TYPES)).toBe(true)
})
})