-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade cypress to v13.6.6 (#2538)
* chore: migrate cypress to v10 * fix: failing cypress test * chore: bump cypress v13 * chore: increase cypress timeout * chore: increase cypress timeout to 10s * chore: clean up cypress config * chore: cypress v10 * chore: cypress v11 * chore: keep cypress testing-library v7.0.3 * chore: use default cypress timeout
- Loading branch information
Showing
7 changed files
with
234 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { defineConfig } from 'cypress'; | ||
|
||
export default defineConfig({ | ||
reporter: 'junit', | ||
reporterOptions: { | ||
mochaFile: 'cypress/results/output.xml', | ||
toConsole: false, | ||
}, | ||
screenshotsFolder: 'cypress/results/screenshots', | ||
videosFolder: 'cypress/results/videos', | ||
e2e: { | ||
setupNodeEvents(on, config) { | ||
return require('./cypress/plugins/index.js')(on, config); | ||
}, | ||
baseUrl: 'http://localhost:4200/', | ||
}, | ||
}); |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.