Skip to content

Commit 6d1bdd4

Browse files
fix: remove redundant tests for withAuthentication, useAuthGuard, and useReturnUrl in react-router package
1 parent 7eed33e commit 6d1bdd4

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

packages/react-router/src/__tests__/index.test.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,4 @@ describe('@asgardeo/react-router', () => {
2323
const {ProtectedRoute} = await import('../index');
2424
expect(ProtectedRoute).toBeDefined();
2525
});
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-
});
4126
});

0 commit comments

Comments
 (0)