style-plugin.ts 270 B

123456789101112
  1. import { config } from '@vue/test-utils'
  2. const stylePlugin = (wrapper: any) => {
  3. return {
  4. style: wrapper.element.style,
  5. }
  6. }
  7. export default function install() {
  8. config.plugins.DOMWrapper.install(stylePlugin)
  9. config.plugins.VueWrapper.install(stylePlugin)
  10. }