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

re-enable Spaces e2e tests #7207

Merged
merged 1 commit into from
Nov 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/end-to-end-tests/src/scenario.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const toastScenarios = require('./scenarios/toast');
const roomDirectoryScenarios = require('./scenarios/directory');
const lazyLoadingScenarios = require('./scenarios/lazy-loading');
const e2eEncryptionScenarios = require('./scenarios/e2e-encryption');
const spacesScenarios = require('./scenarios/spaces');

module.exports = async function scenario(createSession, restCreator) {
let firstUser = true;
Expand All @@ -44,8 +45,7 @@ module.exports = async function scenario(createSession, restCreator) {
const charlies = await createRestUsers(restCreator);
await lazyLoadingScenarios(alice, bob, charlies);
// do spaces scenarios last as the rest of the tests may get confused by spaces
// XXX: disabled for now as fails in CI but succeeds locally
// await spacesScenarios(alice, bob);
await spacesScenarios(alice, bob);
};

async function createRestUsers(restCreator) {
Expand Down