cypress-xray-plugin
Version:
A Cypress plugin for uploading test results to Xray (test management for Jira)
23 lines (22 loc) • 432 B
TypeScript
export interface FieldUpdateOperation {
/**
* The value to add to the field.
*/
add?: unknown;
/**
* The field value to copy from another issue.
*/
copy?: unknown;
/**
* The value to edit in the field.
*/
edit?: unknown;
/**
* The value to removed from the field.
*/
remove?: unknown;
/**
* The value to set in the field.
*/
set?: unknown;
}