Register global custom directives for cypress component testing in vue
P粉529581199
P粉529581199 2024-03-26 22:44:23
0
1
411

Is there a way to register global custom directives for cypress component testing in vue.js. Just register

app.directive('some',(el,binding)=>{{...})
The problem cannot be solved in the

main.js file. Because the directive could not be parsed in the component test component.

Local register like this:

mount(SomeComp,{
directive:{
  'some': {...}
})

is not a good choice. Because I'm using this directive in every component and it needs to be registered locally in every component.

How do I register global directives for Cypress component testing?

Thanks

P粉529581199
P粉529581199

reply all(1)
P粉884667022

Create your own mount,

import { mount } from '@cypress/vue'

export const mountWithDirective = (myComponent) => {

  return mount(myComponent, {
    directive:{
      'some': {...}
  })
}

Put this into /cypress/support/index.js or another file of your choice.

// test
import { mountWithDirective } from 'cypress/support'
import Component from './Component.vue'

it...
  mountWithDirective(Component)
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!