Bug in report notification email in case of parameterized test #1232
Labels
bug
something isn't working
priority medium
reporting
reports, public, private, sharing test run, test report, results, test data
Milestone
Describe the bug
Issue observed while running Playwright tests
When running a parameterized test, the placeholder is always displayed in the Report notification email instead of the parameter value for the respective iteration
To Reproduce
Steps to reproduce the behavior:
Example:
[{ name: 'Alice' }, { name: 'Bob' }, { name: 'Charlie' }].forEach(({ name }) => {
test(
testing with ${name} @Tc3ee236f
, async ({ page }) => {await expect(10).toBeGreaterThan(11);
});
});
Expected behavior
For each iteration, the respective parameter value is displayed
Actual behavior
The parameter value is not displayed,.It is the placeholder i.e. ${name} that is displayed
Screenshots

Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: