UNPKG

@dhlab/e2e-autogen

Version:

Google 스프레드시트 기반 시나리오를 Playwright 테스트 스텁 코드로 자동 생성하고, 테스트 실행 결과를 다시 시트에 업데이트하는 CLI 도구

25 lines (21 loc) 975 B
import * as _msw_playwright from '@msw/playwright'; import * as _playwright_test from '@playwright/test'; import { Reporter, FullConfig, Suite, TestCase, TestResult } from '@playwright/test/reporter'; declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & { network: _msw_playwright.NetworkFixture; page: _playwright_test.Page; } & { manual: (title: string, reason?: string) => Promise<void>; }, _playwright_test.PlaywrightWorkerArgs & _playwright_test.PlaywrightWorkerOptions>; declare class E2EAutogenPlaywrightReporter implements Reporter { private outputFile; private suites; constructor(options?: { outputFile?: string; }); onBegin(config: FullConfig, suite: Suite): void; onTestEnd(test: TestCase, result: TestResult): Promise<void>; onEnd(): Promise<void>; printsToStdio(): boolean; } export { E2EAutogenPlaywrightReporter as default, test };