251211:1314 Frontend: reeactor Admin panel
Spec Validation / validate-markdown (push) Has been cancelled
Spec Validation / validate-diagrams (push) Has been cancelled
Spec Validation / check-todos (push) Has been cancelled

This commit is contained in:
admin
2025-12-11 13:14:15 +07:00
parent c8a0f281ef
commit 3fa28bd14f
79 changed files with 6571 additions and 206 deletions
@@ -116,10 +116,10 @@ describe('CorrespondenceService', () => {
});
describe('findAll', () => {
it('should return paginated correspondences', async () => {
it('should return correspondences array', async () => {
const result = await service.findAll({ projectId: 1 });
expect(result.data).toBeDefined();
expect(result.meta).toBeDefined();
expect(Array.isArray(result)).toBeTruthy();
expect(result).toBeDefined();
});
});
});