mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-08 23:19:26 +08:00
Merge branch 'next' into develop
This commit is contained in:
commit
a897091a29
@ -101,7 +101,15 @@ describe('xlsx importer', () => {
|
|||||||
workbook: template,
|
workbook: template,
|
||||||
});
|
});
|
||||||
|
|
||||||
await expect(importer.validate()).resolves.toBeUndefined();
|
let error;
|
||||||
|
|
||||||
|
try {
|
||||||
|
await importer.validate();
|
||||||
|
} catch (e) {
|
||||||
|
error = e;
|
||||||
|
}
|
||||||
|
|
||||||
|
expect(error).toBeUndefined();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user