TC.setTransactionStatusByName

Sets the default end status of a single open transaction by the transaction name. The transaction must have Auto status in its TC.endTransaction statement.

TC.setTransactionStatusByName(name, status);

Note: If you make a series of calls to modify the Auto status, then the last call before TC.endTransaction is the one that effectively changes the status.

Arguments

Name Description

name

(string) The name of the transaction to set.
statusOne of the following transaction status values: Pass, Fail. The Auto status is not applicable.

Return value

A promise that is fulfilled with undefined upon success.

Example

Copy code
(async ()=>{
    await TC.setTransactionStatusByName("T1", "Pass");
})();