@@ -8,21 +8,23 @@ import configureMockStore from 'redux-mock-store';
8
8
import { getInitialState , reducer } from '../../src/webview/state/reducers' ;
9
9
import { AppState } from '../../src/webview/types' ;
10
10
import { useSelector } from 'react-redux' ;
11
- import { treeMock } from '../__mocks__/treeMock ' ;
11
+ import { treeMock } from '../__mocks__/tree.mock ' ;
12
12
13
13
const initialState = {
14
14
...getInitialState ( ) ,
15
15
activeGuidedAnswer : treeMock ,
16
- activeGuidedAnswerNode : [ {
17
- BODY : '<p>SAP Fiori Tools is a set of extensions for SAP Business Application Studio and Visual Studio Code</p>' ,
18
- EDGES : [
19
- { LABEL : 'Deployment' , TARGET_NODE : 45996 , ORD : 1 } ,
20
- { LABEL : 'Fiori Generator' , TARGET_NODE : 48363 , ORD : 2 }
21
- ] ,
22
- NODE_ID : 45995 ,
23
- QUESTION : 'I have a problem with' ,
24
- TITLE : 'SAP Fiori Tools'
25
- } ]
16
+ activeGuidedAnswerNode : [
17
+ {
18
+ BODY : '<p>SAP Fiori Tools is a set of extensions for SAP Business Application Studio and Visual Studio Code</p>' ,
19
+ EDGES : [
20
+ { LABEL : 'Deployment' , TARGET_NODE : 45996 , ORD : 1 } ,
21
+ { LABEL : 'Fiori Generator' , TARGET_NODE : 48363 , ORD : 2 }
22
+ ] ,
23
+ NODE_ID : 45995 ,
24
+ QUESTION : 'I have a problem with' ,
25
+ TITLE : 'SAP Fiori Tools'
26
+ }
27
+ ]
26
28
} ;
27
29
28
30
jest . mock ( '../../src/webview/state' , ( ) => {
0 commit comments