Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions projects/testing-library/src/lib/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,21 @@ export interface RenderComponentOptions<ComponentType, Q extends Queries = typeo
*/
routes?: Routes;

/**
* @description
* Specifies which route should be initially navigated to
*
* @example
* const component = await render(AppComponent, {
* initialRoute: 'myroute',
* routes: [
* { path: '', component: HomeComponent },
* { path: 'myroute', component: SecondaryComponent }
* ]
* })
*/
initialRoute?: string;

/**
* @description
* Removes the Angular attributes (ng-version, and root-id) from the fixture.
Expand Down
3 changes: 3 additions & 0 deletions projects/testing-library/src/lib/testing-library.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export async function render<SutType, WrapperType = SutType>(
routes = [],
removeAngularAttributes = false,
defaultImports = [],
initialRoute = '',
} = { ...globalConfig, ...renderOptions };

dtlConfigure({
Expand Down Expand Up @@ -107,6 +108,8 @@ export async function render<SutType, WrapperType = SutType>(
const zone = safeInject(NgZone);
const router = safeInject(Router);

if (initialRoute) await router.navigate([initialRoute]);

if (typeof router?.initialNavigation === 'function') {
if (zone) {
zone.run(() => router.initialNavigation());
Expand Down
46 changes: 46 additions & 0 deletions projects/testing-library/tests/render.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
import { NoopAnimationsModule, BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { TestBed } from '@angular/core/testing';
import { render, fireEvent, screen } from '../src/public_api';
import { Resolve, RouterModule } from '@angular/router';

@Component({
selector: 'atl-fixture',
Expand Down Expand Up @@ -296,3 +297,48 @@ describe('DebugElement', () => {
expect(view.debugElement.componentInstance).toBeInstanceOf(FixtureComponent);
});
});

describe('initialRoute', () => {
@Component({
standalone: true,
selector: 'atl-fixture2',
template: `<button>Secondary Component</button>`,
})
class SecondaryFixtureComponent {}

@Component({
standalone: true,
selector: 'atl-router-fixture',
template: `<router-outlet></router-outlet>`,
imports: [RouterModule],
})
class RouterFixtureComponent {}

@Injectable()
class FixtureResolver implements Resolve<void> {
public isResolved = false;

public resolve() {
this.isResolved = true;
}
}

it('allows initially rendering a specific route to avoid triggering a resolver for the default route', async () => {
const initialRoute = 'initial-route';
const routes = [
{ path: initialRoute, component: FixtureComponent },
{ path: '**', resolve: { data: FixtureResolver }, component: SecondaryFixtureComponent },
];

await render(RouterFixtureComponent, {
initialRoute,
routes,
providers: [FixtureResolver],
});
const resolver = TestBed.inject(FixtureResolver);

expect(resolver.isResolved).toBe(false);
expect(screen.queryByText('Secondary Component')).not.toBeInTheDocument();
expect(screen.getByText('button')).toBeInTheDocument();
});
});