Skip to content

Commit

Permalink
Fix token copy test
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelWei committed Jan 29, 2025
1 parent d36c77a commit deccd2f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ describe("Rooms view personalized links token actions", function () {
);
});

it("copy token", function () {
it.only("2copy token", function () {
cy.visit("rooms/abc-def-123#tab=tokens");

cy.wait("@roomRequest");
Expand All @@ -747,7 +747,7 @@ describe("Rooms view personalized links token actions", function () {
win.navigator.clipboard.readText().then((text) => {
expect(text).to.eq(
Cypress.config("baseUrl") +
"/rooms/abc-def-123/1ZKctHSaGd7qLDpFa0emXSjoVTkJHkiTm0xajVOXhHU9BA9CCZquf6sDZtAAEGgdO40neF5dXITbH0CxhKM5940eW988WiIKxC8R",
"/rooms/abc-def-123#token=1ZKctHSaGd7qLDpFa0emXSjoVTkJHkiTm0xajVOXhHU9BA9CCZquf6sDZtAAEGgdO40neF5dXITbH0CxhKM5940eW988WiIKxC8R",
);
});
});
Expand Down

0 comments on commit deccd2f

Please sign in to comment.