import { defineConfig } from 'vitest/config';

// Unit tests for the pure view logic (grouping etc.) — plain node, no Angular
// TestBed. Component behavior is exercised against the real backend instead.
export default defineConfig({
  test: {
    include: ['src/**/*.spec.ts'],
    environment: 'node',
  },
});
