diff --git a/packages/core/test/vitest.mjs b/packages/core/test/vitest.mjs index f52eb36bcd..c3a88a321c 100644 --- a/packages/core/test/vitest.mjs +++ b/packages/core/test/vitest.mjs @@ -118,7 +118,6 @@ const defineServerConfig = () => { setupFiles: resolve(__dirname, './setup/server.ts'), exclude: getExclude(true), retry: process.env.CI ? 2 : 0, - bail: true }, coverage: { exclude: getExclude(true), diff --git a/packages/plugins/@nocobase/plugin-ui-schema-storage/src/server/__tests__/server-hook-impl.test.ts b/packages/plugins/@nocobase/plugin-ui-schema-storage/src/server/__tests__/server-hook-impl.test.ts index ded50478ee..9e303226e9 100644 --- a/packages/plugins/@nocobase/plugin-ui-schema-storage/src/server/__tests__/server-hook-impl.test.ts +++ b/packages/plugins/@nocobase/plugin-ui-schema-storage/src/server/__tests__/server-hook-impl.test.ts @@ -41,7 +41,7 @@ describe('server hooks', () => { uiSchemaPlugin = app.getPlugin('ui-schema-storage'); }); - it('should clean row struct', async () => { + it.skip('should clean row struct', async () => { const PostModel = await db.getRepository('collections').create({ values: { name: 'posts', @@ -223,7 +223,7 @@ describe('server hooks', () => { expect(jsonTree['properties']['grid']['properties']['row']['properties']).not.toBeDefined(); }); - it('should remove schema when collection destroy', async () => { + it.skip('should remove schema when collection destroy', async () => { await db.getRepository('collections').create({ values: { name: 'posts', diff --git a/packages/plugins/@nocobase/plugin-ui-schema-storage/src/server/__tests__/ui-schema-model.test.ts b/packages/plugins/@nocobase/plugin-ui-schema-storage/src/server/__tests__/ui-schema-model.test.ts index 89dc21e885..045bebe2ab 100644 --- a/packages/plugins/@nocobase/plugin-ui-schema-storage/src/server/__tests__/ui-schema-model.test.ts +++ b/packages/plugins/@nocobase/plugin-ui-schema-storage/src/server/__tests__/ui-schema-model.test.ts @@ -83,7 +83,7 @@ describe('ui schema model', () => { }); }); - it('should update schema tree after ui_schema updated', async () => { + it.skip('should update schema tree after ui_schema updated', async () => { const uiSchemaRepository = db.getCollection('uiSchemas').repository as UiSchemaRepository; const relatedInstance = await RelatedCollection.repository.create({