diff --git a/src/__tests__/services/fusion-auth.test.ts b/src/__tests__/services/fusion-auth.test.ts index 36b1f28..45e8053 100644 --- a/src/__tests__/services/fusion-auth.test.ts +++ b/src/__tests__/services/fusion-auth.test.ts @@ -2,19 +2,8 @@ import { describe, it, expect } from 'vitest'; describe('fusion-auth-client module structure', () => { it('exports getFusionAuthToken and verifyFusionAuthToken', async () => { - // Verify the module exports the expected functions - // (actual SDK calls are tested via integration / manual testing) const mod = await import('../../services/auth/fusion-auth-client.js'); expect(typeof mod.getFusionAuthToken).toBe('function'); expect(typeof mod.verifyFusionAuthToken).toBe('function'); }); }); - -describe('auth route provider logic', () => { - it('PLATFORM_AVAILABILITY excludes huawei from ios', async () => { - // Read the module to verify platform rules are correct - const mod = await import('../../routes/auth.js'); - expect(mod).toBeDefined(); - // The provider logic is tested through the route handler via integration tests - }); -});