We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 601f9c1 commit 88f2859Copy full SHA for 88f2859
components/radio/__tests__/radio.test.js
@@ -1,10 +1,14 @@
1
import { mount } from '@vue/test-utils';
2
import { asyncExpect } from '@/tests/utils';
3
-import Radio from '../Radio';
+import Radio, { Group, Button } from '..';
4
import focusTest from '../../../tests/shared/focusTest';
5
+import mountTest from '../../../tests/shared/mountTest';
6
7
describe('Radio', () => {
8
focusTest(Radio);
9
+ mountTest(Radio);
10
+ mountTest(Group);
11
+ mountTest(Button);
12
13
it('should render correctly', () => {
14
const wrapper = mount({
0 commit comments