Compare commits
2 Commits
77c5f5419f
...
caf6d492ca
| Author | SHA1 | Date | |
|---|---|---|---|
| caf6d492ca | |||
| 653d3e7670 |
21
Frontend/src/components/TestEcosistemaComponent.tsx
Normal file
21
Frontend/src/components/TestEcosistemaComponent.tsx
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
const TestEcosistemaComponent: React.FC = () => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<h2>Test Ecosistema OpenCode</h2>
|
||||||
|
<p>Componente creado para completar la fase apply del flujo SDD</p>
|
||||||
|
<ul>
|
||||||
|
<li>MCP engram: ✅ Funcional</li>
|
||||||
|
<li>MCP mssql: ❌ Sin conexión</li>
|
||||||
|
<li>MCP convention-checker: ✅ Funcional</li>
|
||||||
|
<li>MCP release-mcp: ✅ Funcional</li>
|
||||||
|
<li>MCP coordinator-mcp: ✅ Funcional</li>
|
||||||
|
<li>MCP context7: ✅ Funcional</li>
|
||||||
|
<li>MCP sdd-mcp: ⚠️ Parcial/Stub</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default TestEcosistemaComponent;
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
import { render, screen } from '@testing-library/react';
|
import { render, screen } from '@testing-library/react';
|
||||||
import { AuthProvider } from '../useAuth';
|
import { AuthProvider } from '../useAuth';
|
||||||
import { useAuth } from '../useAuth';
|
import { useAuth } from '../useAuth';
|
||||||
import { ReactNode } from 'react';
|
|
||||||
|
|
||||||
// Test component that uses useAuth hook
|
// Test component that uses useAuth hook
|
||||||
const TestComponent = () => {
|
const TestComponent = () => {
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"useDefineForClassFields": true,
|
"useDefineForClassFields": true,
|
||||||
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
"types": ["vite/client"],
|
"types": ["vite/client", "vitest/globals"],
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
|
|
||||||
/* Bundler mode */
|
/* Bundler mode */
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { defineConfig } from 'vite'
|
import { defineConfig } from 'vitest/config'
|
||||||
import react from '@vitejs/plugin-react'
|
import react from '@vitejs/plugin-react'
|
||||||
import tailwindcss from '@tailwindcss/vite'
|
import tailwindcss from '@tailwindcss/vite'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user