Merge branch 'next' into develop

This commit is contained in:
nocobase[bot] 2025-01-14 00:52:54 +00:00
commit a897091a29

View File

@ -101,7 +101,15 @@ describe('xlsx importer', () => {
workbook: template,
});
await expect(importer.validate()).resolves.toBeUndefined();
let error;
try {
await importer.validate();
} catch (e) {
error = e;
}
expect(error).toBeUndefined();
});
});