Skip to content

Commit a720457

Browse files
committed
added cypress config file
1 parent ef8ec95 commit a720457

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)