Skip to content

Commit be4419d

Browse files
Fix lint error
1 parent b4aec8c commit be4419d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/FO/FOBasePage.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ export default class FOBasePage extends CommonPage implements FOBasePagePageInte
565565
*/
566566
async hasAutocompleteSearchResult(page: Page, productName: string): Promise<boolean> {
567567
await this.setValue(page, this.searchInput, productName);
568-
568+
569569
return this.isAutocompleteSearchResultVisible(page);
570570
}
571571

@@ -578,7 +578,7 @@ export default class FOBasePage extends CommonPage implements FOBasePagePageInte
578578
async getAutocompleteSearchResult(page: Page, productName: string): Promise<string> {
579579
await this.setValue(page, this.searchInput, productName);
580580
await this.waitForVisibleSelector(page, this.autocompleteSearchResult);
581-
581+
582582
return this.getTextContent(page, this.autocompleteSearchResult);
583583
}
584584

@@ -591,7 +591,7 @@ export default class FOBasePage extends CommonPage implements FOBasePagePageInte
591591
async countAutocompleteSearchResult(page: Page, productName: string): Promise<number> {
592592
await this.setValue(page, this.searchInput, productName);
593593
await this.waitForVisibleSelector(page, this.autocompleteSearchResultItem);
594-
594+
595595
return page.locator(this.autocompleteSearchResultItem).count();
596596
}
597597

0 commit comments

Comments
 (0)