From 204ee199a302536dab9d31bab64a61621ee7bf84 Mon Sep 17 00:00:00 2001 From: GouJ Date: Mon, 14 Sep 2026 16:16:21 +0800 Subject: [PATCH] fix: expect empty style when creating a project without a style --- tests/features/workflows/pages.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/features/workflows/pages.test.ts b/tests/features/workflows/pages.test.ts index ee145fc..230fed4 100644 --- a/tests/features/workflows/pages.test.ts +++ b/tests/features/workflows/pages.test.ts @@ -1463,7 +1463,7 @@ describe('工作台页面交互', () => { expect(wrapper.emitted('created')).toEqual([['created']]) expect(JSON.parse(fetcher.mock.calls[0]![1]!.body as string)).toEqual({ topic: '雨夜来信', - style: '爽文反转', + style: '', episodeCount: 6 }) })