google-labs-jules[bot] d0c617fdd7 chore: migrate button component to components/button
Moves the `button` component to `components/button` and creates re-exports in the original `button` directory for backward compatibility.
This change also updates internal imports and includes copyright headers in the re-export files.
2025-12-09 19:25:30 +00:00

18 lines
369 B
TypeScript

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