Report code samples (JavaScript SDK)

Access current report status during runtime

This example shows how to access the current report status during runtime, and write different scenarios of the test execution according to the obtained value.

var reportStatus =  LFT.Reporter.getStatus();
if (reportStatus == LFT.Reporter.Status.Passed) {
	//continue test execution
} else {
	//make custom action
}

Back to top

See also: