Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | /** * Constants used by widget components */ // Compliance status values export const COMPLIANCE_STATUS = { FULLY_COMPLIANT: "Meets all compliance requirements", SUBSTANTIALLY_COMPLIANT: "Meets most compliance requirements", BASIC_COMPLIANCE: "Meets basic compliance only", MINIMAL_COMPLIANCE: "Minimal compliance achieved", NON_COMPLIANT: "Does not meet compliance requirements" }; // Test IDs for compliance status widget export const COMPLIANCE_STATUS_TEST_IDS = { WIDGET: "compliance-status-widget", OVERALL_STATUS: "compliance-overall-status", COMPLIANT: "compliance-compliant-frameworks", PARTIAL: "compliance-partially-compliant-frameworks", NON_COMPLIANT: "compliance-non-compliant-frameworks", REMEDIATION_STEPS: "compliance-remediation-steps", FRAMEWORK_ITEM: "compliance-framework-item", REMEDIATION_STEP: "compliance-remediation-step" }; // Don't re-export from itself, which causes circular dependency |