material-web/list/list-item_test.ts
Elizabeth Mitchell ca2cd56bd1 fix(list): remove font shorthand tokens
BREAKING CHANGE: replace `*-type` font tokens with `-font`, `-size`, `-line-height`, and `-weight`

PiperOrigin-RevId: 563162539
2023-09-06 11:22:42 -07:00

18 lines
342 B
TypeScript

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