Skip to content
Snippets Groups Projects

feat(structure): change addresse api in order to cover the all department....

Merged Hugo SUBTIL requested to merge dev into master
35 files
+ 435
65
Compare changes
  • Side-by-side
  • Inline
Files
35
@@ -197,4 +197,16 @@ describe('AdminController', () => {
expect((await controller.getAdminStructuresList()).claimed.length).toEqual(0);
expect((await controller.getAdminStructuresList()).incomplete.length).toEqual(2);
});
it('should find attached users', async () => {
expect((await controller.findAttachedUsers()).length).toBe(0);
});
it('should find unattached users', async () => {
expect((await controller.findUnattachedUsers()).length).toBe(0);
});
it('should find unverified users', async () => {
expect((await controller.findUnVerifiedUsers()).length).toBe(0);
});
});
Loading