Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Disable spotlight unknown people test (#11740)
Browse files Browse the repository at this point in the history
This is probably a Synapse issue:
matrix-org/synapse#16472
Waiting for the profile to be available via API before the tests didn't help.
  • Loading branch information
weeman1337 authored Oct 13, 2023
1 parent 6a99425 commit e22fa2e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion cypress/e2e/spotlight/spotlight.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,14 @@ describe("Spotlight", () => {
});
});

it("should find unknown people", () => {
/**
* Search sends the correct query to Synapse.
* Synapse doesn't return the user in the result list.
* Waiting for the profile to be available via APIs before the tests didn't help.
*
* https://github.com/matrix-org/synapse/issues/16472
*/
it.skip("should find unknown people", () => {
cy.openSpotlightDialog()
.within(() => {
cy.wait(500); // Wait for dialog to settle
Expand Down

0 comments on commit e22fa2e

Please sign in to comment.