gpaldemo/tests/comment/newHelloWordTest.js
lightings fa46565292 ...
2023-02-28 11:37:08 +08:00

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'
}
});
});
})