Skip to content

Commit

Permalink
fix(plugin-file-manager): fix error thrown when creating file collect…
Browse files Browse the repository at this point in the history
…ion (nocobase#6363)
  • Loading branch information
mytharcher authored Mar 5, 2025
1 parent 4dc22e0 commit cb2cb0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ describe('Upload', () => {
render(<App2 />);
});

// TODO: skip due to not pass but works in browser
it.skip('upload single', async () => {
it('upload single', async () => {
await renderAppOptions({
designable: true,
enableUserListDataBlock: true,
Expand Down Expand Up @@ -124,8 +123,7 @@ describe('Upload', () => {
});
});

// TODO: skip due to not pass but works in browser
it.skip('upload multi', async () => {
it('upload multi', async () => {
await renderAppOptions({
designable: true,
enableUserListDataBlock: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ export class FileCollectionTemplate extends CollectionTemplate {
type: 'text',
name: 'url',
deletable: false,
length: 1024,
uiSchema: {
type: 'string',
title: `{{t("URL")}}`,
Expand Down

0 comments on commit cb2cb0b

Please sign in to comment.