tachybase_todo/packages/plugin-ui-schema/src/__tests__/ui_schemas.test.ts
2021-10-01 23:31:49 +08:00

18 lines
354 B
TypeScript

import { mockServer, MockServer } from '@nocobase/test';
import { registerActions } from '@nocobase/actions';
describe('ui_schemas', () => {
let api: MockServer;
beforeEach(async () => {
api = mockServer();
});
afterEach(async () => {
await api.destroy();
});
it('create ui_schemas', async () => {
expect(1).toBe(1);
});
});