material-web/focus/md-focus-ring_test.ts
Elizabeth Mitchell d49f9b89e4 fix(focus)!: rename import to md-focus-ring.ts
BREAKING CHANGE: Change `@material/web/focus/focus-ring.js` to `@material/web/focus/md-focus-ring.js`.

PiperOrigin-RevId: 550608428
2023-07-24 10:43:31 -07:00

18 lines
349 B
TypeScript

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