material-web/button/filled-button_test.ts
Elizabeth Mitchell c1d3cc0f50 chore: add missing licenses
PiperOrigin-RevId: 575915441
2023-10-23 13:39:04 -07:00

18 lines
358 B
TypeScript

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