material-web/iconbutton/outlined-icon-button_test.ts
Andrew Jakubowicz daea92e3fe test(iconbutton): add token tests
PiperOrigin-RevId: 560106639
2023-08-25 09:02:32 -07:00

17 lines
383 B
TypeScript

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