1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-24 06:02:08 +03:00

Attempt to fix the cypress flake (#8492)

This commit is contained in:
Michael Telatynski
2022-05-04 12:07:37 +01:00
committed by GitHub
parent 5cece10552
commit c616bd7a62
5 changed files with 95 additions and 18 deletions

View File

@ -16,8 +16,13 @@ limitations under the License.
/// <reference types="cypress" />
import { synapseDocker } from "./synapsedocker/index";
import { synapseDocker } from "./synapsedocker";
import PluginEvents = Cypress.PluginEvents;
import PluginConfigOptions = Cypress.PluginConfigOptions;
export default function(on, config) {
/**
* @type {Cypress.PluginConfig}
*/
export default function(on: PluginEvents, config: PluginConfigOptions) {
synapseDocker(on, config);
}