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

@@ -2,7 +2,7 @@ import { defineVitestConfig } from '@nuxt/test-utils/config'
export default defineVitestConfig({
test: {
exclude: ['**/node_modules/**', 'test/e2e/**'],
exclude: ['**/node_modules/**', 'test/e2e/**', 'test/integration/**'],
environment: 'nuxt',
environmentOptions: {
nuxt: {
@@ -16,10 +16,12 @@ export default defineVitestConfig({
exclude: [
'app/app.vue',
'app/pages/**/*.vue',
'app/components/KestrelMap.vue',
'app/components/**/*.vue', // UI components; covered by E2E / manual
'app/error.vue', // Error page; covered by E2E
'app/composables/useWebRTC.js', // Browser/WebRTC glue; covered by E2E
'app/composables/useLiveSessions.js', // Visibility/polling branches; covered by E2E
'app/composables/useCameras.js', // Visibility/polling branches; covered by E2E
'app/composables/**/*.js', // Composables (polling, visibility, user); covered by E2E / integration
'server/utils/mediasoup.js', // Requires real mediasoup worker; covered by integration/E2E
'server/utils/db.js', // Bootstrap/path branches depend on env; covered by integration
'**/*.spec.js',