docs/content/en/project/contributing/test-status.md
This page contains results of tests performed in the development of Meshery.
Resources:
🔗 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>