mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
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:
@@ -9,4 +9,9 @@ describe('An AbsolutePathInteractionRoute', (): void => {
|
||||
it('returns the given path.', async(): Promise<void> => {
|
||||
expect(route.getPath()).toBe('http://example.com/idp/path/');
|
||||
});
|
||||
|
||||
it('matches a path if it is identical to the stored path.', async(): Promise<void> => {
|
||||
expect(route.matchPath(path)).toEqual({});
|
||||
expect(route.matchPath('http://example.com/somewhere/else')).toBeUndefined();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user