import { motion } from "framer-motion"; export const QATestingVector = () => { return (
{/* Testing Dashboard */}
{/* Header */}
Test Results
Running
{/* Test Cases */}
{[ { name: "Login Flow", status: "passed", color: "green" }, { name: "Payment Gateway", status: "passed", color: "green" }, { name: "User Registration", status: "running", color: "yellow" }, { name: "API Validation", status: "passed", color: "green" }, { name: "Mobile Responsive", status: "failed", color: "red" } ].map((test, index) => (
{test.name}
{test.status}
))}
{/* Statistics */}
85%
Passed
10%
Running
5%
Failed
{/* Testing Tools */}
{/* Selenium */} Selenium {/* Cypress */} Cypress {/* Jest */} Jest
{/* Bug Tracking */}
Bug Report
#001
#002
#003
{/* Performance Metrics */}
{/* Load Time */}
1.2s
Load Time
{/* Coverage */}
95%
Coverage
{/* Success Rate */}
99.2%
Success
{/* Floating Test Icons */} {/* Test Automation Flow */} {/* Quality Labels */}
Automated Testing
Performance Testing
Security Testing
); };