16 lines
340 B
JavaScript
16 lines
340 B
JavaScript
|
import VnTitle from '@/components/common/VnTitle.vue';
|
||
|
|
||
|
describe('<VnTitle />', () => {
|
||
|
it('renders', () => {
|
||
|
// see: https://on.cypress.io/mounting-vue
|
||
|
cy.mount(VnTitle,{
|
||
|
props:{
|
||
|
url:'url',
|
||
|
title: 'title',
|
||
|
|
||
|
}
|
||
|
});
|
||
|
console.log(VnTitle);
|
||
|
});
|
||
|
});
|