2024-05-28 09:38:09 +00:00
|
|
|
import VnTitle from 'src/components/common/VnTitle.vue';
|
2024-04-16 12:13:44 +00:00
|
|
|
|
|
|
|
describe('<VnTitle />', () => {
|
|
|
|
it('renders', () => {
|
|
|
|
// see: https://on.cypress.io/mounting-vue
|
2024-05-28 09:38:09 +00:00
|
|
|
cy.mount(VnTitle, {
|
|
|
|
props: {
|
|
|
|
url: 'url',
|
2024-04-16 12:13:44 +00:00
|
|
|
title: 'title',
|
2024-05-28 09:38:09 +00:00
|
|
|
},
|
2024-04-16 12:13:44 +00:00
|
|
|
});
|
|
|
|
console.log(VnTitle);
|
|
|
|
});
|
|
|
|
});
|