How to pass assertions?

How to pass assertions ?

Hi Michael,

You can pass lambdatest assertion in JS-Jest.

Below is the code for the same:

 {
    // some GET request
    Assert.assertEquals(ActualValue, ExpectedValue);
} catch (AssertionError e) {
    Status = "failed";
    exceptionCapture.add(e.getMessage());
    ((JavascriptExecutor) driver).executeScript("lambda-exceptions", exceptionCapture);
}