我有一个用于删除文件的单元,它能够删除数量最多的文件,但之后失败了,这可能是什么问题?我也没有设置限制。它能够删除
对于这个示例,我能够跟踪成功的删除操作,直到325,此后失败。有什么问题吗?带有单元测试代码?
#Code
it('should be able to delete a file', async () => {
const employee = await createHuman();
const file = await createFile(employee);
try {
const result = await File.remove(file.id);
assert.ok();
} catch (err) {
assert.fail('File not deleted');
}
});