Open
Description
Describe the bug
Preconditions: Test contains multiple soft assertion and multiple fails.
To Reproduce
Steps to reproduce the behavior:
- run the test
- generate report
Expected behavior
allure report contains all errors that happened in test
Actual behavior
allure report contains only first error happened
test code:
import { test } from '@integration-tests/fixtures/setup.fixture';
import { expect } from '@playwright/test';
test.only('Soft assertion check', async () => {
expect.soft('first').toBe('false1');
expect.soft('second').toBe('false2');
});