mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:20:54 +01:00
11 lines
358 B
TypeScript
11 lines
358 B
TypeScript
import { ComponentHarness } from '@angular/cdk/testing';
|
|
|
|
|
|
export class ApplicationScreen extends ComponentHarness {
|
|
// Selector to the application's root element
|
|
static readonly hostSelector = 'app-root';
|
|
static path = '/';
|
|
|
|
// This would be a great place for some application-wide utilities,
|
|
// for example access to modals or a log-out button
|
|
}
|