mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Add new shell domain with three feature libraries: - shell-layout: Main application layout container - shell-header: Application header component - shell-navigation: Navigation component All libraries configured with: - Standalone Angular components - Vitest with JUnit and Cobertura reporters - Architectural tags (scope:shell, type:feature)
14 lines
320 B
TypeScript
14 lines
320 B
TypeScript
import '@angular/compiler';
|
|
import '@analogjs/vitest-angular/setup-zone';
|
|
|
|
import {
|
|
BrowserTestingModule,
|
|
platformBrowserTesting,
|
|
} from '@angular/platform-browser/testing';
|
|
import { getTestBed } from '@angular/core/testing';
|
|
|
|
getTestBed().initTestEnvironment(
|
|
BrowserTestingModule,
|
|
platformBrowserTesting(),
|
|
);
|