Skip to content

Commit

Permalink
fixes dashboard tests
Browse files Browse the repository at this point in the history
  • Loading branch information
coltmcnealy-lh committed Jan 20, 2024
1 parent 03c2eb7 commit f88ea81
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Edge, Node } from 'reactflow'
import { MarkerType } from 'reactflow'
import ElkConstructor from 'elkjs/lib/elk.bundled.js'
import type { ExitNode, UserTaskNode, WfSpec } from '../../../../../../../littlehorse-public-api/wf_spec'
import { FailureHandlerDef_LHFailureType, Node as LHNode } from '../../../../../../../littlehorse-public-api/wf_spec'
import { FailureHandlerDef_LHFailureType, Node as LHNode, WfRunVariableAccessLevel } from '../../../../../../../littlehorse-public-api/wf_spec'
import {
LHStatus,
MetadataStatus,
Expand Down Expand Up @@ -721,6 +721,7 @@ describe('Layouting graph from LH Nodes', () => {
'name': 'request-id',
'defaultValue': undefined,
},
accessLevel: WfRunVariableAccessLevel.PUBLIC_VAR,
'jsonIndexes': [],
},
{
Expand All @@ -731,6 +732,7 @@ describe('Layouting graph from LH Nodes', () => {
'name': 'was-it-a-risky-decision',
'defaultValue': undefined,
},
accessLevel: WfRunVariableAccessLevel.PUBLIC_VAR,
'jsonIndexes': [],
},
{
Expand All @@ -741,6 +743,7 @@ describe('Layouting graph from LH Nodes', () => {
'name': 'is-risk-approved',
'defaultValue': undefined,
},
accessLevel: WfRunVariableAccessLevel.PUBLIC_VAR,
'jsonIndexes': [],
}
],
Expand Down Expand Up @@ -1540,6 +1543,7 @@ describe('Layouting graph from LH Nodes', () => {
},
'jsonIndexes': [],
required: true,
accessLevel: WfRunVariableAccessLevel.PUBLIC_VAR,
searchable: true
}
],
Expand Down Expand Up @@ -2204,6 +2208,7 @@ describe('Layouting graph from LH Nodes', () => {
'name': 'request-id',
'defaultValue': undefined,
},
accessLevel: WfRunVariableAccessLevel.PUBLIC_VAR,
'jsonIndexes': [],
},
{
Expand All @@ -2214,6 +2219,7 @@ describe('Layouting graph from LH Nodes', () => {
'name': 'was-it-a-risky-decision',
'defaultValue': undefined,
},
accessLevel: WfRunVariableAccessLevel.PUBLIC_VAR,
'jsonIndexes': [],
},
{
Expand All @@ -2224,6 +2230,7 @@ describe('Layouting graph from LH Nodes', () => {
'name': 'decision-explanation',
'defaultValue': undefined,
},
accessLevel: WfRunVariableAccessLevel.PUBLIC_VAR,
'jsonIndexes': [],
},
{
Expand All @@ -2234,6 +2241,7 @@ describe('Layouting graph from LH Nodes', () => {
'name': 'is-risk-approved',
'defaultValue': undefined,
},
accessLevel: WfRunVariableAccessLevel.PUBLIC_VAR,
'jsonIndexes': [],
}
],
Expand Down Expand Up @@ -2831,6 +2839,7 @@ describe('Layouting graph from LH Nodes', () => {
'name': 'parent-var',
'defaultValue': undefined,
},
accessLevel: WfRunVariableAccessLevel.PUBLIC_VAR,
'jsonIndexes': [],
},
{
Expand All @@ -2841,6 +2850,7 @@ describe('Layouting graph from LH Nodes', () => {
'name': '2-spawned-thread-START_THREAD',
'defaultValue': undefined,
},
accessLevel: WfRunVariableAccessLevel.PUBLIC_VAR,
'jsonIndexes': [],
}
],
Expand Down Expand Up @@ -2894,6 +2904,7 @@ describe('Layouting graph from LH Nodes', () => {
'name': 'child-var',
'defaultValue': undefined,
},
accessLevel: WfRunVariableAccessLevel.PUBLIC_VAR,
'jsonIndexes': [],
},
],
Expand Down

0 comments on commit f88ea81

Please sign in to comment.