Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
waterplea committed Dec 26, 2024
1 parent 8111338 commit ef67736
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,14 +238,14 @@ describe('InputPhoneInternational', () => {

function getDropdownCountryNames(): string[] {
const countryNameContainers =
fixture.debugElement.queryAll(By.css('.t-name')) || [];
fixture.debugElement.queryAll(By.css('[tuiTitle]')) || [];

return countryNameContainers.map((container) =>
container.nativeElement.textContent?.trim(),
);
}

function getCountrySelector(): DebugElement {
return fixture.debugElement.query(By.css('.t-select select'));
return fixture.debugElement.query(By.css('.t-ipi-select'));
}
});

0 comments on commit ef67736

Please sign in to comment.