material-web/chips/assist-chip_test.ts
Elizabeth Mitchell a2c1cd9eb1 test(chips): add token tests for assist and suggestion chips
PiperOrigin-RevId: 518652887
2023-03-22 13:10:35 -07:00

18 lines
350 B
TypeScript

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