How to mark test passed/failed on LT C#- MSTest?

How to mark test passed/failed on LT C#- MSTest?

Hey Rhian,

You can mark the test is passed or failed by adding lambda-status hooks below:

For Passed Test: browser.executeScript("lambda-status=passed");

For Failed Test: driver.executeScript('lambda-status=failed');