@mmisty/cypress-allure-adapter
Version:
cypress allure adapter to generate allure results during tests execution (Allure TestOps compatible)
16 lines (15 loc) • 528 B
JavaScript
;
/**
* Serializable operation types for the Allure Task Server
*
* All operations must be serializable (no closures, no functions)
* so they can be sent over HTTP to a separate process.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SERVER_PORT_ENV = exports.SERVER_HEALTH_PATH = exports.SERVER_PATH = void 0;
/**
* Server endpoints
*/
exports.SERVER_PATH = '/__allure_tasks/';
exports.SERVER_HEALTH_PATH = '/__allure_health/';
exports.SERVER_PORT_ENV = 'ALLURE_TASK_SERVER_PORT';