mirror of
https://github.com/material-components/material-web.git
synced 2024-11-10 11:21:43 +03:00
9eb7bf081f
PiperOrigin-RevId: 495074655
18 lines
344 B
TypeScript
18 lines
344 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2022 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// import 'jasmine'; (google3-only)
|
|
|
|
import {createTokenTests} from '../testing/tokens.js';
|
|
|
|
import {MdElevation} from './elevation.js';
|
|
|
|
describe('<md-elevation>', () => {
|
|
describe('.styles', () => {
|
|
createTokenTests(MdElevation.styles);
|
|
});
|
|
});
|