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

29
tests/e2e/package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "@bifrost/e2e-tests",
"version": "1.0.0",
"private": true,
"description": "Playwright E2E tests for Bifrost UI",
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:providers": "playwright test features/providers",
"test:virtual-keys": "playwright test features/virtual-keys",
"test:dashboard": "playwright test features/dashboard",
"test:logs": "playwright test features/logs",
"test:mcp-logs": "playwright test features/mcp-logs",
"test:mcp-registry": "playwright test features/mcp-registry",
"test:routing-rules": "playwright test features/routing-rules",
"test:observability": "playwright test features/observability",
"test:config": "playwright test features/config",
"test:plugins": "playwright test features/plugins",
"report": "playwright show-report",
"codegen": "playwright codegen http://localhost:3000"
},
"devDependencies": {
"@playwright/test": "1.57.0",
"@types/node": "20.19.27",
"typescript": "5.9.3"
}
}