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

@@ -28,7 +28,7 @@ vi.mock('../../src/entities', async () => {
const actual = await vi.importActual('../../src/entities');
return {
...actual,
// 如果需要mock其他实体可以在这里添加
// If you need to mock other entities, you can add them here.
};
});
@@ -198,7 +198,7 @@ describe('WorkflowNode', () => {
const newData = { test: 'new data' };
workflowNode.setData(newData);
// 验证原始数据没有被修改
// Verify that the original data source has not been modified
expect(newData).toEqual({ test: 'new data' });
expect(mockFormItem.value).toEqual({ test: 'new data' });
});