Disable spotlight unknown people test (#11740)
This is probably a Synapse issue: https://github.com/matrix-org/synapse/issues/16472 Waiting for the profile to be available via API before the tests didn't help.
This commit is contained in:
parent
6a9942576d
commit
e22fa2efc1
1 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue