Sha256: d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2
Contents?: true
Size: 710 Bytes
Versions: 26
Compression:
Stored size: 710 Bytes
Contents
import {OptionsReceived} from 'pretty-format' import {BoundFunctions, Queries} from './get-queries-for-element' import * as queries from './queries' export type Screen<Q extends Queries = typeof queries> = BoundFunctions<Q> & { /** * Convenience function for `pretty-dom` which also allows an array * of elements */ debug: ( element?: Array<Element | HTMLDocument> | Element | HTMLDocument, maxLength?: number, options?: OptionsReceived, ) => void /** * Convenience function for `Testing Playground` which logs and returns the URL that * can be opened in a browser */ logTestingPlaygroundURL: (element?: Element | HTMLDocument) => string } export const screen: Screen
Version data entries
26 entries across 26 versions & 1 rubygems