gpaldemo/test/comment/newHelloWordTest.js
lightings c749e1cd0d ...
2023-01-16 10:51:03 +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'
}
});
});
})