diff --git a/apps/api/test/app-switcher.test.ts b/apps/api/test/app-switcher.test.ts index 9d013b5..272bea0 100644 --- a/apps/api/test/app-switcher.test.ts +++ b/apps/api/test/app-switcher.test.ts @@ -18,11 +18,15 @@ describe('app-switcher API', () => { expect(body.menuLabel).toBeTruthy() expect(body.apps.map((a) => a.id).sort()).toEqual([ 'bgp', + 'cdn', 'cfdm', 'dns', 'fw', 'vps', ]) + expect(body.apps.find((a) => a.id === 'cdn')).toMatchObject({ + authMode: 'jwt', + }) expect(body.apps.find((a) => a.id === 'dns')).toMatchObject({ authMode: 'oidc', })