We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can we add support for playwright runtime annotations? https://playwright.dev/docs/test-annotations
For example:
testInfo.annotations.push({ type: 'test_key', description: 'KEY-123' });
test.info().annotations.push( { type: 'browser version', description: '1.0.0', });
In the html report they show like this:
Related to: #661 #490
The text was updated successfully, but these errors were encountered:
Also, would be nice if we can support other test annotations not just skip or fixme. Test annotations can be any combination of type/description:
import { test, expect } from '@playwright/test';
test('test login page', { annotation: { type: 'issue', description: 'microsoft/playwright#23180', }, }, async ({ page }) => { // ... });
Sorry, something went wrong.
+1 on this!
+1 on this
No branches or pull requests
Can we add support for playwright runtime annotations?
https://playwright.dev/docs/test-annotations
For example:
testInfo.annotations.push({ type: 'test_key', description: 'KEY-123' });
test.info().annotations.push( {
type: 'browser version',
description: '1.0.0',
});
In the html report they show like this:
Related to: #661 #490
The text was updated successfully, but these errors were encountered: