帮助开发者为 Vue 3 组件编写单元测试。当用户需要添加单元测试时使用。
84
77%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
Optimize this skill with Tessl
npx tessl skill review --optimize ./bcs-services/bcs-project-manager/.cursor/skills/chat-x-unit-test/SKILL.md测试文件与组件同目录,命名为 组件名.spec.ts。
pnpm --filter @blueking/chat-x test # 所有测试
npx vitest run src/components/your-component # 指定目录import { defineComponent, h } from 'vue';
import { type VueWrapper, mount } from '@vue/test-utils';
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
import YourComponent from './your-component.vue';
vi.mock('vue-tippy', () => ({ /* ... */ }));
describe('YourComponent', () => {
let wrapper: VueWrapper;
beforeEach(() => { vi.clearAllMocks(); });
afterEach(() => { wrapper?.unmount(); });
it('应该正确渲染', () => {
wrapper = mount(YourComponent);
expect(wrapper.find('.your-component').exists()).toBe(true);
});
});修改组件代码时必须同步更新测试用例。
skill://chat-x-unit-test/references/mock-patterns.mdskill://chat-x-unit-test/references/test-qa.mdskill://chat-x-unit-test/references/test-strategies.mdskill://chat-x-unit-test/references/mock-patterns.mdskill://chat-x-unit-test/references/test-qa.mdskill://chat-x-unit-test/references/test-strategies.md根据 SKILL.md 中的 IF-THEN 规则判断是否需要加载
b08ac38
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.