Skip to content

Commit

Permalink
Fixed radio test
Browse files Browse the repository at this point in the history
  • Loading branch information
rain0r committed Jan 10, 2025
1 parent 9c3e870 commit f7f7eb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions angularclient/cypress/e2e/radio.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ describe("Radio Test", () => {
radioStreams.forEach((stream: RadioStream) => {
cy.visit("/browse-radio-streams");
cy.get("[data-cy='radio-streams-table']")
.get("td")
.get("td")
.contains(stream.name)
.parent("tr")
.parent().parent("tr")
.within(() => {
cy.get("td").eq(1).contains(stream.url);
cy.get("td").eq(2).click();
Expand Down

0 comments on commit f7f7eb9

Please sign in to comment.