UNPKG

@augment-vir/test

Version:

A universal testing suite that works with Mocha style test runners _and_ Node.js's built-in test runner.

9 lines (8 loc) 298 B
import { type Locator } from '@playwright/test'; /** * Expects that all matches for the given locator are either visible or hidden (controlled by * `isVisible`). * * @category Internal */ export declare function expectAllVisible(locator: Readonly<Locator>, isVisible: boolean): Promise<void>;