17 lines
676 B
TypeScript
17 lines
676 B
TypeScript
|
|
/**
|
||
|
|
* @license
|
||
|
|
* Copyright Google LLC All Rights Reserved.
|
||
|
|
*
|
||
|
|
* Use of this source code is governed by an MIT-style license that can be
|
||
|
|
* found in the LICENSE file at https://angular.dev/license
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Re-export the base control harness from the "form-field/testing/control" entry-point. To
|
||
|
|
// avoid circular dependencies, harnesses for form-field controls (i.e. input, select)
|
||
|
|
// need to import the base form-field control harness through a separate entry-point.
|
||
|
|
export {MatFormFieldControlHarness} from '@angular/material/form-field/testing/control';
|
||
|
|
|
||
|
|
export * from './form-field-harness-filters';
|
||
|
|
export * from './form-field-harness';
|
||
|
|
export * from './error-harness';
|