14 lines
516 B
TypeScript
14 lines
516 B
TypeScript
import { expect, test } from '../../core/fixtures/base.fixture'
|
|
|
|
// MCP Auth Config routes to @enterprise components not present in OSS.
|
|
// Tests only verify URL routing; do not add UI assertions for enterprise-only content.
|
|
test.describe('MCP Auth Config', () => {
|
|
test.beforeEach(async ({ mcpAuthConfigPage }) => {
|
|
await mcpAuthConfigPage.goto()
|
|
})
|
|
|
|
test('should load MCP auth config page', async ({ mcpAuthConfigPage }) => {
|
|
await expect(mcpAuthConfigPage.page).toHaveURL(/mcp-auth-config/)
|
|
})
|
|
})
|