UNPKG

@o3r/testing

Version:

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

17 lines 657 B
import { O3rElement } from '../element'; import type { SliderElementProfile } from '../elements'; /** * Interface to describe the material Slider elements that are used inside a fixture. * As for ComponentFixtureProfile, this abstracts the testing framework that is used by choosing the right * implementation at runtime. */ export interface MatSliderProfile extends SliderElementProfile { } /** * Mock for ElementProfile class. * This class is used for fixture compilation purpose. */ export declare class MatSlider extends O3rElement implements MatSliderProfile { constructor(sourceElement: any); } //# sourceMappingURL=slider-material.d.ts.map