feat: Full rework of account management

Complete rewrite of the account management and related systems.
Makes the architecture more modular,
allowing for easier extensions and configurations.
This commit is contained in:
Joachim Van Herwegen
2022-03-16 10:12:13 +01:00
parent ade977bb4f
commit a47f5236ef
366 changed files with 12345 additions and 5111 deletions

View File

@@ -0,0 +1,10 @@
import { StaticInteractionHandler } from '../../../../src/identity/interaction/StaticInteractionHandler';
describe('A FixedInteractionHandler', (): void => {
const json = { data: 'data' };
const handler = new StaticInteractionHandler(json);
it('returns the given JSON as response.', async(): Promise<void> => {
await expect(handler.handle()).resolves.toEqual({ json });
});
});