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 e7d935c commit c250fbfCopy full SHA for c250fbf
build/config.js
@@ -1,5 +1,5 @@
1
module.exports = {
2
dev: {
3
- componentName: 'popconfirm', // dev components
+ componentName: 'popover', // dev components
4
},
5
};
components/popover/__tests__/index.test.js
@@ -1,8 +1,10 @@
import { mount } from '@vue/test-utils';
import { asyncExpect } from '@/tests/utils';
import Popover from '..';
+import mountTest from '../../../tests/shared/mountTest';
6
describe('Popover', () => {
7
+ mountTest(Popover);
8
it('should show overlay when trigger is clicked', async () => {
9
const popover = mount(
10
{
0 commit comments