chore(types): add blob reporter to the known reporter types (#27371)

Closes https://github.com/microsoft/playwright/issues/27357
This commit is contained in:
Yury Semikhatsky 2023-09-29 15:15:18 -07:00 committed by GitHub
parent 5deea65bf2
commit bb8a102164
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -19,9 +19,10 @@ import type { APIRequestContext, Browser, BrowserContext, BrowserContextOptions,
export * from 'playwright-core';
export type ReporterDescription =
['blob'] | ['blob', { outputDir?: string }] |
['dot'] |
['line'] |
['list'] |
['list'] | ['list', { printSteps?: boolean }] |
['github'] |
['junit'] | ['junit', { outputFile?: string, stripANSIControlSequences?: boolean }] |
['json'] | ['json', { outputFile?: string }] |

View File

@ -18,9 +18,10 @@ import type { APIRequestContext, Browser, BrowserContext, BrowserContextOptions,
export * from 'playwright-core';
export type ReporterDescription =
['blob'] | ['blob', { outputDir?: string }] |
['dot'] |
['line'] |
['list'] |
['list'] | ['list', { printSteps?: boolean }] |
['github'] |
['junit'] | ['junit', { outputFile?: string, stripANSIControlSequences?: boolean }] |
['json'] | ['json', { outputFile?: string }] |