Back to Meshery

End-to-End Test Status

docs/content/en/project/contributing/test-status.md

1.0.181.7 KB
Original Source

This page contains results of tests performed in the development of Meshery.

Resources:

<style> /* General Table Styling */ table { width: 100%; border-collapse: collapse; } th, td { border: 1px solid #333; padding: 8px; text-align: left; } .accordion-header { cursor: pointer; background-color: #444; color: white; font-weight: normal; text-align: center; font-size: 1rem; } .accordion-header:hover { background-color: #666; } .accordion-content { display: none; background-color: #222; } .accordion-content table { margin: 0; background-color: #333; } .accordion-content td { color: white; padding: 5px 10px; } </style>

Latest E2E Test Report

🔗 View Build UI and Server Workflow

{{% test-report %}}

<script> // JavaScript for toggling the accordion content document.addEventListener("DOMContentLoaded", function () { const headers = document.querySelectorAll(".accordion-header"); headers.forEach(header => { header.addEventListener("click", function () { const content = this.nextElementSibling; if (content.classList.contains("accordion-content")) { content.style.display = content.style.display === "table-row" ? "none" : "table-row"; } }); }); }); </script>