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