test: align ui model test location

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
jesxion
2026-04-24 17:33:22 +08:00
parent 7e7790c4af
commit d7da6d1331
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import { describe, expect, it } from 'vitest'
import { getHazardStatusMeta, getLogStatusMeta, getPrimaryTabs } from '../src/lib/ui-model'
import { getHazardStatusMeta, getLogStatusMeta, getPrimaryTabs } from '../lib/ui-model'
describe('getPrimaryTabs', () => {
it('returns exactly four tabs', () => {

View File

@@ -20,7 +20,7 @@ export default defineConfig(({ mode }) => {
},
},
test: {
include: ['tests/**/*.test.ts'],
include: ['src/tests/**/*.test.ts'],
environment: 'node',
},
}