How can we know which assertion failed in case of multiple assertion failure in Playwright test?

How can we know which assertion failed in case of multiple assertion failure in Playwright test?

Hi Joe,

In case of assertion fails the test execution is stopped. This means that the last assertion mentioned in the test failed.

Also, in case of multiple assertions being used in the test, the test will be stopped on the very first assertion error. This means that the assertion used just after the last command in the test log got failed in case of assertion error.