9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||
|
|
||
|
describe('<VnSelect />', () => {
|
||
|
it('renders', () => {
|
||
|
// see: https://on.cypress.io/mounting-vue
|
||
|
cy.mount(VnSelect);
|
||
|
});
|
||
|
});
|