Disabled videos in cypress CI config (#436)

While running tests, cypress records videos of each one and processes them afterwards. This needs some resources we could save to reduce the CI runtime as we don't use or upload these videos.
This commit is contained in:
Erik Michelson 2020-08-19 22:35:37 +02:00 committed by GitHub
parent d6646ac3e9
commit 56957c9b43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,6 @@
{
"baseUrl": "http://localhost:3001/",
"defaultCommandTimeout": 15000,
"experimentalFetchPolyfill": true
"experimentalFetchPolyfill": true,
"video": false
}