make kestrel a tak server, so that it can send and receive pois as cots data
Some checks failed
ci/woodpecker/pr/pr Pipeline failed

This commit is contained in:
Madison Grubb
2026-02-17 10:42:53 -05:00
parent b18283d3b3
commit b0e8dd7ad9
96 changed files with 5767 additions and 500 deletions

View File

@@ -0,0 +1,9 @@
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)
})
})