enable cypress tests for xray
Taking+advantage+of+JUnit+XML+reports: https://docs.getxray.app/display/XRAY/Taking+advantage+of+JUnit+XML+reports Mocha tut: https://mochajs.org/api/tutorial-custom-reporter.html ‚use strict‘; const mkdirp = require(‚mkdirp‘); const xmlbuilder = require(‚xmlbuilder‘); const Mocha = require(‚mocha‘); const path = require(‚path‘); const fs = require(‚fs‘); const { EVENT_RUN_BEGIN, EVENT_RUN_END, EVENT_TEST_FAIL, EVENT_TEST_PASS, EVENT_SUITE_BEGIN, EVENT_SUITE_END, EVENT_TEST_PENDING, EVENT_TEST_END } = Mocha.Runner.constants; console.log( „EVENT_RUN_BEGIN:“ + EVENT_RUN_BEGIN, „EVENT_RUN_END:“ + EVENT_RUN_END, „EVENT_TEST_FAIL:“ + EVENT_TEST_FAIL, „EVENT_TEST_PASS:“ + EVENT_TEST_PASS, […]