material-web/chips/suggestion-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
366 B
TypeScript

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