material-web/chips/internal/suggestion-chip_test.ts
Andrew Jakubowicz a8880f791b fix(chips)!: rename "lib" directory to "internal"
BREAKING CHANGE: Rename `@material/web/chips/lib` to `@material/web/chips/internal`. Prefer not using internal files.

PiperOrigin-RevId: 550044106
2023-07-21 14:02:06 -07:00

19 lines
437 B
TypeScript

/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
// import 'jasmine'; (google3-only)
import {AssistChip} from './assist-chip.js';
import {SuggestionChip} from './suggestion-chip.js';
customElements.define('test-suggestion-chip', SuggestionChip);
describe('Suggestion chip', () => {
it('should be an assist chip', () => {
expect(new SuggestionChip()).toBeInstanceOf(AssistChip);
});
});