- Debian-based api image (bookworm-slim), docker/debian mirrors, prisma binaryTargets for openssl 3.0 - nginx: admin SPA under /admin, TLS via acme.sh (ZeroSSL) + auto-renewal cron, http->https redirect - prisma: add origin_goods.delisted migration, sync missing schema (good_image/tag_font_color/good_tags), fix users.createdAt Timestamptz - api: CORS wildcard reflection, helmet CORP cross-origin, price backfill in persistProductDetail, categoryIcon ancestor fallback, mediaByColor per-color gallery in public goods detail - admin: /admin base path (vite + router) - import-data.mjs: udt_name casting, serial sequence advance fix
26 lines
869 B
TypeScript
26 lines
869 B
TypeScript
import { mount } from '@vue/test-utils';
|
|
import { describe, expect, it } from 'vitest';
|
|
import ProductSidebar from '../app/components/product/ProductSidebar.vue';
|
|
import type { Category } from '../app/composables/useProductCenter';
|
|
|
|
const categories: Category[] = [{
|
|
id: 'men',
|
|
name: '男士服装',
|
|
icon: null,
|
|
parentId: null,
|
|
children: [{ id: 'men-tee', name: 'T恤', icon: null, parentId: 'men', children: [] }],
|
|
}];
|
|
|
|
describe('ProductSidebar', () => {
|
|
it('selects and expands a parent category when it is clicked', async () => {
|
|
const wrapper = mount(ProductSidebar, {
|
|
props: { categories, activeCategoryId: null },
|
|
});
|
|
|
|
await wrapper.findAll('.root-row')[1]?.trigger('click');
|
|
|
|
expect(wrapper.emitted('update:activeCategoryId')).toEqual([['men']]);
|
|
expect(wrapper.text()).toContain('T恤');
|
|
});
|
|
});
|