We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 255e268 commit 1a04ae2Copy full SHA for 1a04ae2
integtest.sh
@@ -216,9 +216,8 @@ fi
216
# We need to ensure the cypress tests are the last execute process to
217
# the error code gets passed to the CI.
218
219
-if [ "$OSTYPE" = "msys" ] || [ "$OSTYPE" = "cygwin" ] || [ "$OSTYPE" = "win32" ]; then
220
- echo "Disable video recording in Windows due to ffmpeg missing libs in Windows Docker Container"
221
- echo "TODO: https://github.com/opensearch-project/opensearch-dashboards-functional-test/issues/1068"
+if [ "$DISABLE_VIDEO" = "true" ]; then
+ echo "Disable video recording when running tests in Cypress"
222
jq '. + {"video": false}' cypress.json > cypress_new.json # jq does not allow reading and writing on same file
223
mv -v cypress_new.json cypress.json
224
fi
0 commit comments