material-web/button/text-button_test.ts
Elizabeth Mitchell c1d3cc0f50 chore: add missing licenses
PiperOrigin-RevId: 575915441
2023-10-23 13:39:04 -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 {MdTextButton} from './text-button.js';
describe('<md-text-button>', () => {
describe('.styles', () => {
createTokenTests(MdTextButton.styles);
});
});