UNPKG

@o3r/testing

Version:

The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.

16 lines 556 B
import { DebugElement } from '@angular/core'; import { RadioElementProfile } from '../../elements'; import { O3rElement } from '../element'; /** * Implementation dedicated to angular / TestBed. */ export declare class O3rRadioElement extends O3rElement implements RadioElementProfile { constructor(sourceElement: DebugElement); /** @inheritDoc */ check(value?: boolean): Promise<void>; /** @inheritDoc */ uncheck(): Promise<void>; /** @inheritDoc */ isChecked(): Promise<boolean>; } //# sourceMappingURL=radio-element.d.ts.map