2022-05-04 13:07:37 +02:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
import { defineConfig } from "cypress";
|
2022-05-04 13:07:37 +02:00
|
|
|
|
2023-09-26 08:17:14 +02:00
|
|
|
import registerPlugins from "./cypress/plugins";
|
|
|
|
|
2022-07-08 14:14:13 +02:00
|
|
|
export default defineConfig({
|
2023-10-02 11:11:31 +02:00
|
|
|
videoUploadOnPasses: false,
|
2022-12-12 12:24:14 +01:00
|
|
|
projectId: "ppvnzg",
|
2022-07-08 14:14:13 +02:00
|
|
|
experimentalInteractiveRunEvents: true,
|
2023-07-18 12:37:39 +02:00
|
|
|
experimentalMemoryManagement: true,
|
2022-07-08 14:14:13 +02:00
|
|
|
defaultCommandTimeout: 10000,
|
|
|
|
chromeWebSecurity: false,
|
|
|
|
e2e: {
|
|
|
|
setupNodeEvents(on, config) {
|
2023-09-26 08:17:14 +02:00
|
|
|
return registerPlugins(on, config);
|
2022-07-08 14:14:13 +02:00
|
|
|
},
|
2022-12-12 12:24:14 +01:00
|
|
|
baseUrl: "http://localhost:8080",
|
2023-04-25 17:42:59 +02:00
|
|
|
specPattern: "cypress/e2e/**/*.spec.{js,jsx,ts,tsx}",
|
2022-07-08 14:14:13 +02:00
|
|
|
},
|
2022-10-31 19:11:38 +01:00
|
|
|
env: {
|
2023-01-20 10:59:54 +01:00
|
|
|
// Docker tag to use for `ghcr.io/matrix-org/sliding-sync` image.
|
2023-07-17 20:38:12 +02:00
|
|
|
SLIDING_SYNC_PROXY_TAG: "v0.99.3",
|
2023-01-11 00:29:56 +01:00
|
|
|
HOMESERVER: "synapse",
|
2022-10-31 19:11:38 +01:00
|
|
|
},
|
2022-10-13 20:11:30 +02:00
|
|
|
retries: {
|
|
|
|
runMode: 4,
|
|
|
|
openMode: 0,
|
|
|
|
},
|
2023-07-11 17:10:13 +02:00
|
|
|
|
|
|
|
// disable logging of HTTP requests made to the Cypress server. They are noisy and not very helpful.
|
|
|
|
// @ts-ignore https://github.com/cypress-io/cypress/issues/26284
|
|
|
|
morgan: false,
|
2022-07-08 14:14:13 +02:00
|
|
|
});
|