You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-01 13:11:10 +03:00
Switch to sorry-cypress (#11668)
This commit is contained in:
committed by
GitHub
parent
54c88c57ed
commit
24b10a87c0
@@ -16,6 +16,8 @@ limitations under the License.
|
||||
|
||||
/// <reference types="cypress" />
|
||||
import installLogsPrinter from "cypress-terminal-report/src/installLogsPrinter";
|
||||
import cloudPlugin from "cypress-cloud/plugin";
|
||||
import { initPlugins } from "cypress-plugin-init";
|
||||
|
||||
import PluginEvents = Cypress.PluginEvents;
|
||||
import PluginConfigOptions = Cypress.PluginConfigOptions;
|
||||
@@ -32,15 +34,22 @@ import { mailhogDocker } from "./mailhog";
|
||||
* @type {Cypress.PluginConfig}
|
||||
*/
|
||||
export default function (on: PluginEvents, config: PluginConfigOptions) {
|
||||
docker(on, config);
|
||||
synapseDocker(on, config);
|
||||
dendriteDocker(on, config);
|
||||
slidingSyncProxyDocker(on, config);
|
||||
webserver(on, config);
|
||||
oAuthServer(on, config);
|
||||
log(on, config);
|
||||
initPlugins(
|
||||
on,
|
||||
[
|
||||
cloudPlugin,
|
||||
docker,
|
||||
synapseDocker,
|
||||
dendriteDocker,
|
||||
slidingSyncProxyDocker,
|
||||
webserver,
|
||||
oAuthServer,
|
||||
log,
|
||||
mailhogDocker,
|
||||
],
|
||||
config,
|
||||
);
|
||||
installLogsPrinter(on, {
|
||||
// printLogsToConsole: "always",
|
||||
});
|
||||
mailhogDocker(on, config);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user