@material/web
Version:
Material web components
16 lines • 407 B
JavaScript
/**
* @license
* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { Harness } from '../testing/harness.js';
/**
* Test harness for checkbox.
*/
export class CheckboxHarness extends Harness {
async getInteractiveElement() {
await this.element.updateComplete;
return this.element.renderRoot.querySelector('input');
}
}
//# sourceMappingURL=harness.js.map