lighty-admin-vite
Version:
基于 Vue3、TypeScript、Element Plus、Pinia 和 Vite 等主流技术.
35 lines (32 loc) • 831 B
text/typescript
import { shallowMount } from "@vue/test-utils"
import { describe, expect, it } from "vitest"
import Notify from "@/components/Notify/index.vue"
import NotifyList from "@/components/Notify/NotifyList.vue"
describe("Notify", () => {
it("正常渲染", () => {
const wrapper = shallowMount(Notify)
expect(wrapper.classes("notify")).toBe(true)
})
})
describe("NotifyList", () => {
it("List 长度为 0", () => {
const wrapper = shallowMount(NotifyList, {
props: {
list: []
}
})
expect(wrapper.find("el-empty").exists()).toBe(true)
})
it("List 长度不为 0", () => {
const wrapper = shallowMount(NotifyList, {
props: {
list: [
{
title: ""
}
]
}
})
expect(wrapper.find("el-empty").exists()).toBe(false)
})
})