mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 17:00:54 +01:00
12 lines
358 B
TypeScript
12 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
|
||
|
|
}
|