File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
client/packages/lowcoder/src Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,15 @@ import { trans } from "../../../i18n";
33import { evalAndReduce } from "comps/utils" ;
44import { messageInstance } from "lowcoder-design" ;
55
6+ jest . mock ( 'lowcoder-design/src/components/GlobalInstances' , ( ) => ( {
7+ __esModule : true , // this property makes it work
8+ default : 'mockedDefaultExport' ,
9+ messageInstance : {
10+ error : jest . fn ( ) ,
11+ success : jest . fn ( ) ,
12+ } ,
13+ } ) ) ;
14+
615const param = {
716 value : {
817 showSuccess : true ,
Original file line number Diff line number Diff line change @@ -540,7 +540,6 @@ export const LeftContent = (props: LeftContentProps) => {
540540 < LeftContentWrapper className = "cypress-left-content" >
541541 < LeftContentTabs
542542 defaultActiveKey = { LeftTabKey . ModuleSetting }
543- // TODO: RAHEEL
544543 items = { tabItems }
545544 >
546545 </ LeftContentTabs >
You can’t perform that action at this time.
0 commit comments