We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef8ec95 commit a720457Copy full SHA for a720457
packages/react-integration/cypress.config.ts
@@ -0,0 +1,18 @@
1
+import { defineConfig } from 'cypress';
2
+
3
+export default defineConfig({
4
+ e2e: {
5
+ specPattern: 'cypress/integration/**/*.spec.ts',
6
+ video: false,
7
+ screenshotOnRunFailure: false,
8
+ viewportWidth: 1200,
9
+ viewportHeight: 792,
10
+ supportFile: false
11
+ },
12
+ reporter: 'junit',
13
+ reporterOptions: {
14
+ mochaFile: 'results/my-test-output-[hash].xml',
15
+ toConsole: true
16
17
+ waitForAnimations: false
18
+});
packages/react-integration/cypress.json
0 commit comments