test(ripple): add tests

PiperOrigin-RevId: 510193629
This commit is contained in:
Elizabeth Mitchell 2023-02-16 11:10:29 -08:00 committed by Copybara-Service
parent cc5a7db27d
commit 6e31262aab

17
ripple/ripple_test.ts Normal file
View File

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