FUYU
2023-05-19 559771a80cf779dc13a84ecd2f178e6ca5a8353a
force-app/main/default/triggers/InspectionReportTrigger.trigger
@@ -1,4 +1,6 @@
trigger InspectionReportTrigger on Inspection_Report__c (after insert, after update, before delete) {
    InspectionReportTriggerHandler handler = new InspectionReportTriggerHandler();
    handler.run();
    if(Test.isRunningTest()||UserInfo.getUserId()!=System.Label.ByPassTrigger){
        InspectionReportTriggerHandler handler = new InspectionReportTriggerHandler();
        handler.run();
    }
}