From 5de1666c51d784059f9aac6ce218dff83575a633 Mon Sep 17 00:00:00 2001 From: xilesun <2013xile@gmail.com> Date: Thu, 19 Dec 2024 16:42:10 +0800 Subject: [PATCH] fix: test --- .../plugin-theme-editor/src/server/__tests__/actions.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/@nocobase/plugin-theme-editor/src/server/__tests__/actions.test.ts b/packages/plugins/@nocobase/plugin-theme-editor/src/server/__tests__/actions.test.ts index 0ecd488f0e..c249c62674 100644 --- a/packages/plugins/@nocobase/plugin-theme-editor/src/server/__tests__/actions.test.ts +++ b/packages/plugins/@nocobase/plugin-theme-editor/src/server/__tests__/actions.test.ts @@ -22,7 +22,7 @@ describe('actions', () => { process.env.INIT_ROOT_PASSWORD = '123456'; process.env.INIT_ROOT_NICKNAME = 'Test'; app = await createMockServer({ - plugins: ['auth', 'users', 'acl', 'data-source-manager', 'system-settings', 'theme-editor'], + plugins: ['auth', 'users', 'acl', 'data-source-manager', 'system-settings', 'theme-editor', 'field-sort'], }); db = app.db;