chore: replace all cn comments of fe to en version by volc api (#320)

This commit is contained in:
tecvan
2025-07-31 10:32:15 +08:00
committed by GitHub
parent 716ec0cba8
commit 71f6245a01
2960 changed files with 15545 additions and 15545 deletions

View File

@@ -118,14 +118,14 @@ describe('bot-error-certain-error', () => {
sendCertainError(new Error(), handle);
expect(handle).toHaveBeenCalled();
});
// notInstanceError json stringify 失败的单测
// notInstanceError json stringified single test
errorFuncList.forEach(item => {
const handle = vi.fn();
if (item.name !== 'notInstanceError') {
return;
}
(item.func as Mock).mockReturnValue(true);
// JSON stringify 会报错的 case
// JSON stringify will report an error case
const b = { a: {} };
const a = { b: {}, name: 'notInstanceError' };
b.a = a;