| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>FSD Test Case Manager | Jira Style</title> | |
| <meta name="description" content="FSD Test Case Manager - Jira-style interface for managing test cases linked to FSDs and User Stories"> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <testcase-dashboard></testcase-dashboard> | |
| <script src="components/testcase-dashboard.js"></script> | |
| <script> | |
| // Simple edit functionality demonstration | |
| document.addEventListener('click', function(e) { | |
| if (e.target.classList.contains('edit-btn')) { | |
| const card = e.target.closest('.testcase-card'); | |
| if (card) { | |
| // In a real app, this would open a modal or inline editor | |
| alert(`Editing test case ${card.dataset.id}`); | |
| } | |
| } | |
| }); | |
| </script> | |
| </body> | |
| </html> | |