@angular/material
Version:
Angular Material
70 lines (64 loc) • 2.56 kB
JavaScript
import { ContentContainerComponentHarness, HarnessPredicate } from '@angular/cdk/testing';
/**
* @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.io/license
*/
/** Harness for interacting with an MDC-based mat-card in tests. */
class MatCardHarness extends ContentContainerComponentHarness {
constructor() {
super(...arguments);
this._title = this.locatorForOptional('.mat-mdc-card-title');
this._subtitle = this.locatorForOptional('.mat-mdc-card-subtitle');
}
/**
* Gets a `HarnessPredicate` that can be used to search for a card with specific attributes.
* @param options Options for filtering which card instances are considered a match.
* @return a `HarnessPredicate` configured with the given options.
*/
static with(options = {}) {
return new HarnessPredicate(this, options)
.addOption('text', options.text, (harness, text) => HarnessPredicate.stringMatches(harness.getText(), text))
.addOption('title', options.title, (harness, title) => HarnessPredicate.stringMatches(harness.getTitleText(), title))
.addOption('subtitle', options.subtitle, (harness, subtitle) => HarnessPredicate.stringMatches(harness.getSubtitleText(), subtitle));
}
/** Gets all of the card's content as text. */
async getText() {
return (await this.host()).text();
}
/** Gets the cards's title text. */
async getTitleText() {
return (await this._title())?.text() ?? '';
}
/** Gets the cards's subtitle text. */
async getSubtitleText() {
return (await this._subtitle())?.text() ?? '';
}
}
/** The selector for the host element of a `MatCard` instance. */
MatCardHarness.hostSelector = '.mat-mdc-card';
/**
* @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.io/license
*/
/**
* @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.io/license
*/
/**
* @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.io/license
*/
export { MatCardHarness };
//# sourceMappingURL=testing.mjs.map