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

Add basic performance testing via Cypress (#8586)

This commit is contained in:
J. Ryan Stinnett
2022-05-17 15:38:45 +01:00
committed by GitHub
parent 83b3dfa341
commit c122c5cd3b
17 changed files with 169 additions and 18 deletions

View File

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