10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
|
|
||
|
import UserPanel from 'src/components/UserPanel.vue';
|
||
|
|
||
|
describe('<UserPanel />', () => {
|
||
|
it('TODO: boilerplate', () => {
|
||
|
// see: https://on.cypress.io/mounting-vue
|
||
|
cy.vnMount(UserPanel);
|
||
|
});
|
||
|
});
|