mirror of
https://github.com/material-components/material-web.git
synced 2026-03-09 00:09:23 +08:00
16 lines
329 B
TypeScript
16 lines
329 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {createTokenTests} from '../testing/tokens.js';
|
|
|
|
import {MdLinearProgress} from './linear-progress.js';
|
|
|
|
describe('<md-linear-progress>', () => {
|
|
describe('.styles', () => {
|
|
createTokenTests(MdLinearProgress.styles);
|
|
});
|
|
});
|