material-web/chips/input-chip_test.ts
Elizabeth Mitchell d029b634c7 feat(chips): add input chips
PiperOrigin-RevId: 530743037
2023-05-09 16:25:13 -07:00

18 lines
346 B
TypeScript

/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
// import 'jasmine'; (google3-only)
import {createTokenTests} from '../testing/tokens.js';
import {MdInputChip} from './input-chip.js';
describe('<md-input-chip>', () => {
describe('.styles', () => {
createTokenTests(MdInputChip.styles);
});
});