TestAppOptions
Home > @backstage/test-utils > TestAppOptions
Options to customize the behavior of the test app wrapper.
Signature:
export type TestAppOptions = {
    routeEntries?: string[];
    mountedRoutes?: {
        [path: string]: RouteRef | ExternalRouteRef;
    };
    components?: Partial<AppComponents>;
    icons?: Partial<AppIcons> & {
        [key in string]: IconComponent;
    };
};
References: RouteRef, ExternalRouteRef, AppComponents, AppIcons, IconComponent