13 lines
327 B
JavaScript
13 lines
327 B
JavaScript
describe('New Helloworld Commponent test', function() {
|
|
it('check if the component has ben mounted', async(browser) =>
|
|
{
|
|
browser.mountComponent('/src/views/AboutView.vue', {
|
|
props: {
|
|
msg:"Welcome to Your Vue.js App"
|
|
},
|
|
plugins: {
|
|
router: '/src/router/index.js'
|
|
}
|
|
});
|
|
});
|
|
}) |