cypress-xray-plugin
Version:
A Cypress plugin for uploading test results to Xray (test management for Jira)
27 lines (26 loc) • 514 B
TypeScript
export interface ChangeItem {
/**
* The name of the field changed.
*/
field?: string;
/**
* The type of the field changed.
*/
fieldtype?: string;
/**
* The details of the original value.
*/
from?: string;
/**
* The details of the original value as a string.
*/
fromString?: string;
/**
* The details of the new value.
*/
to?: string;
/**
* The details of the new value as a string.
*/
toString?: string;
}