We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eed33e commit 6d1bdd4Copy full SHA for 6d1bdd4
packages/react-router/src/__tests__/index.test.ts
@@ -23,19 +23,4 @@ describe('@asgardeo/react-router', () => {
23
const {ProtectedRoute} = await import('../index');
24
expect(ProtectedRoute).toBeDefined();
25
});
26
-
27
- it('should export withAuthentication', async () => {
28
- const {withAuthentication} = await import('../index');
29
- expect(withAuthentication).toBeDefined();
30
- });
31
32
- it('should export useAuthGuard', async () => {
33
- const {useAuthGuard} = await import('../index');
34
- expect(useAuthGuard).toBeDefined();
35
36
37
- it('should export useReturnUrl', async () => {
38
- const {useReturnUrl} = await import('../index');
39
- expect(useReturnUrl).toBeDefined();
40
41
0 commit comments