All checks were successful
Anonymous openbaar portal completing the walking skeleton (submit → projection → public visibility). closes #10
15 lines
464 B
TypeScript
15 lines
464 B
TypeScript
import { provideRouter } from '@angular/router';
|
|
import { render } 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 RegisterPage owns the heading).
|
|
expect(container.querySelector('router-outlet')).toBeTruthy();
|
|
});
|
|
});
|