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
https://playwright.dev/docs/next/api/class-testconfig#test-config-metadata
metadata
import { defineConfig } from '@playwright/test'; export default defineConfig({ metadata: 'acceptance tests', });
Result:
Type 'string' is not assignable to type 'Metadata'.
export type Metainfo = { 'revision.id'?: string; 'revision.author'?: string; 'revision.email'?: string; 'revision.subject'?: string; 'revision.timestamp'?: number | Date; 'revision.link'?: string; 'ci.link'?: string; 'timestamp'?: number };
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Page(s)
https://playwright.dev/docs/next/api/class-testconfig#test-config-metadata
Description
1. Current
metadata
example does not pass TypeScript check:Result:
2. Documentation should mention the certain fields that are allowed in
metadata
, e.g.The text was updated successfully, but these errors were encountered: