first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:52:23 +03:00
commit 880f412e2c
2662 changed files with 866266 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { expect, test } from '../../core/fixtures/base.fixture'
// MCP Tool Groups 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 Tool Groups', () => {
test.beforeEach(async ({ mcpToolGroupsPage }) => {
await mcpToolGroupsPage.goto()
})
test('should load MCP tool groups page', async ({ mcpToolGroupsPage }) => {
await expect(mcpToolGroupsPage.page).toHaveURL(/mcp-tool-groups/)
})
})

View File

@@ -0,0 +1,14 @@
import { Page } from '@playwright/test'
import { BasePage } from '../../../core/pages/base.page'
import { waitForNetworkIdle } from '../../../core/utils/test-helpers'
export class MCPToolGroupsPage extends BasePage {
constructor(page: Page) {
super(page)
}
async goto(): Promise<void> {
await this.page.goto('/workspace/mcp-tool-groups')
await waitForNetworkIdle(this.page)
}
}