使用 vitest 和 testing-library 进行测试不起作用:这是由于使用了 SFC 脚本设置?

Testing with vitest and testing-library is not working: it is due to using the SFC Script Setup?

我是 Vue 新手,尤其是组合函数方面的新手。我正在尝试测试使用脚本设置的组件;但是,它似乎不起作用。

组件是这个:

<template>
    <el-card class="box-card" body-style="padding: 38px; text-align: center;" v-loading="loading">
        <h3>Login</h3>
        <hr class="container--separator">
        <el-form ref="formRef"
            :model="form"
        >   
            <el-form-item label="Username">
                <el-input v-model="form.username" placeholder="Username"/>
            </el-form-item>
            <el-form-item label="Password">
                <el-input type="password" v-model="form.password" placeholder="Password" />
            </el-form-item>
            <el-button color="#2274A5" v-on:click="submitForm()">Login</el-button>
        </el-form>
    </el-card>
    
</template>

<script lang="ts" setup>
import {reactive, ref} from 'vue'
import { useRouter } from 'vue-router'
import type {FormInstance} from 'element-plus'
import {useMainStore} from "../../stores/index"
import notification from "@/utils/notification"
import type User from "@/types/User"


const formRef = ref<FormInstance>()
const form: User = reactive({
  username: "",
  password: "",
}) 

const router = useRouter()
const loading = ref(false)

const submitForm = (async() => {
    const store = useMainStore()

    if (form.username === "") {
        return notification("The username is empty, please fill the field")
    }

    if (form.password === "") {
        return notification("The password is empty, please fill the field")
    }

    loading.value = true;
    await store.fetchUser(form.username, form.password);
    loading.value = false;
    
    router.push({ name: "home" })
    

}) 

</script>

<style lang="sass" scoped>
    @import "./LoginCard.scss"
</style>

当我尝试测试它时:

import { test } from 'vitest'
import {render, fireEvent} from '@testing-library/vue'
import { useRouter } from 'vue-router'
import LoginCard from '../LoginCard/LoginCard.vue'

test('login works', async () => {     

    render(LoginCard)
    
})

我有更多的行,但只是测试渲染组件给我这个错误。

TypeError: Cannot read properties of undefined (reading 'deep')
 ❯ Module.withDirectives node_modules/@vue/runtime-core/dist/runtime-core.cjs.js:3720:17
 ❯ Proxy._sfc_render src/components/LoginCard/LoginCard.vue:53:32
     51|     loading.value = false;
     52| 
     53|     router.push({ name: "home" });

我试图评论组件的某些部分以查看它是否是特定线路(例如路由器)的问题,但问题似乎仍然存在。 我试图搜索它但我不知道我做错了什么,它与组件本身有关?我应该改变我完成组件的方式吗?

我遇到了同样的问题,终于弄明白了。也许这会对你有所帮助。

问题是我必须在调用渲染函数时注册组件使用的全局插件。

我正在尝试测试使用由全局插件注册的指令的组件。在我的例子中,它是 maska,我在输入中使用了该指令,该指令在我的组件内部深处嵌套的某处呈现,如下所示:

<!-- a global directive my component used -->
<input v-maska="myMask" .../>

@vue/test-utils 没有自动识别,导致了这个问题。为了解决它,我不得不在 render() 函数的配置参数中传递使用的插件:

import Maska from 'maska';

render(MyComponent, {
    global: {
        plugins: [Maska]
    }
})

然后,问题就解决了。您可以找到有关 render() 的更多信息 此处配置: https://test-utils.vuejs.org/api/#global