UNPKG

cypress-table

Version:

Cypress plugin to make table and grid assertions easier

14 lines (11 loc) 264 B
/// <reference types="cypress" /> interface CypressGetTableOptions { onlyColumns?: Array<string>; } declare namespace Cypress { interface Chainable { getTable( options?: CypressGetTableOptions ): Chainable<Array<Record<string, string>>>; } }