Skip to content

Commit

Permalink
LPD-30298 Explicitly declare type
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisKian authored and brianchandotcom committed Jul 25, 2024
1 parent 32e1a0c commit c90661c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {ApplicationsMenuPage} from '../product-navigation-applications-menu/Appl

export class EditVirtualInstancePage {
readonly activeToggle: Locator;
readonly applicationsMenuPage;
readonly applicationsMenuPage: ApplicationsMenuPage;
readonly mailDomainField: Locator;
readonly maxUsersField: Locator;
readonly page: Page;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class VirtualInstancesPage {
readonly addInstanceVirtualHost: Locator;
readonly addInstanceVirtualInstanceInitializer: Locator;
readonly addInstanceWebIdField: Locator;
readonly applicationsMenuPage;
readonly applicationsMenuPage: ApplicationsMenuPage;
readonly errorMessage: Locator;
readonly newVirtualInstanceButton: Locator;
readonly page: Page;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {clickAndExpectToBeVisible} from '../../utils/clickAndExpectToBeVisible';
import {ApplicationsMenuPage} from '../product-navigation-applications-menu/ApplicationsMenuPage';

export class IdentityProviderConnectionsPage {
readonly applicationsMenuPage;
readonly applicationsMenuPage: ApplicationsMenuPage;
readonly clockSkewField: Locator;
readonly enabledField: Locator;
readonly entityIdField: Locator;
Expand Down
2 changes: 1 addition & 1 deletion modules/test/playwright/pages/saml-web/SamlAdminPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {Locator, Page, expect} from '@playwright/test';
import {ApplicationsMenuPage} from '../product-navigation-applications-menu/ApplicationsMenuPage';

export class SamlAdminPage {
readonly applicationsMenuPage;
readonly applicationsMenuPage: ApplicationsMenuPage;
readonly enabledField: Locator;
readonly entityIdField: Locator;
readonly page: Page;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {clickAndExpectToBeVisible} from '../../utils/clickAndExpectToBeVisible';
import {ApplicationsMenuPage} from '../product-navigation-applications-menu/ApplicationsMenuPage';

export class ServiceProviderConnectionsPage {
readonly applicationsMenuPage;
readonly applicationsMenuPage: ApplicationsMenuPage;
readonly assertionLifetimeField: Locator;
readonly attributesEnabledToggle: Locator;
readonly attributesField: Locator;
Expand Down

0 comments on commit c90661c

Please sign in to comment.