material-web/progress/linear-progress_test.ts
Andrew Jakubowicz 15df1d5f1a fix(progress): squash linearprogress and circular progress into progress
This changes the following imports from:

```js
import '@material/web/circularprogress/circular-progress.js';
import '@material/web/linearprogress/linear-progress.js';
```

to

```js
import '@material/web/progress/circular-progress.js';
import '@material/web/progress/linear-progress.js';
```

PiperOrigin-RevId: 547860610
2023-07-13 11:18:24 -07:00

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);
});
});