test(portal-beheer): beheer app scaffold + catalogus viewer specs (refs #130)

This commit is contained in:
not
2026-07-24 10:55:58 +02:00
parent df16659f94
commit b412721938
22 changed files with 521 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { provideRouter } from '@angular/router';
import { render, screen } from '@testing-library/angular';
import { App } from './app';
describe('App', () => {
it('renders the router outlet shell', async () => {
const { container } = await render(App, {
providers: [provideRouter([])],
});
// The shell is a thin host for routed pages (the CatalogusPage owns the heading).
expect(container.querySelector('router-outlet')).toBeTruthy();
expect(screen).toBeTruthy();
});
});