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

Commit 7fb48d2

Browse files
authored
Upgrade to Cypress 10 (#9008)
* Upgrade to Cypress 10 * Remove stale comment
1 parent cc64e8e commit 7fb48d2

File tree

20 files changed

+38
-163
lines changed

20 files changed

+38
-163
lines changed

cypress.config.ts

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*
2+
Copyright 2022 The Matrix.org Foundation C.I.C.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
import { defineConfig } from 'cypress';
18+
19+
export default defineConfig({
20+
videoUploadOnPasses: false,
21+
projectId: 'ppvnzg',
22+
experimentalInteractiveRunEvents: true,
23+
defaultCommandTimeout: 10000,
24+
chromeWebSecurity: false,
25+
e2e: {
26+
setupNodeEvents(on, config) {
27+
return require('./cypress/plugins/index.ts').default(on, config);
28+
},
29+
baseUrl: 'http://localhost:8080',
30+
experimentalSessionAndOrigin: true,
31+
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
32+
},
33+
});

cypress.json

Lines changed: 0 additions & 13 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)