feat: add parallel test case
parent
566dc9b4a8
commit
ab66f30e1d
@ -0,0 +1,39 @@
|
|||||||
|
import { cloneDeep } from 'lodash-es'
|
||||||
|
import format from '.'
|
||||||
|
import graphToLogStruct from '../graph-to-log-struct'
|
||||||
|
|
||||||
|
describe('parallel', () => {
|
||||||
|
const list = graphToLogStruct('(parallel, parallelNode, nodeA, nodeB -> nodeC)')
|
||||||
|
const [parallelNode, ...parallelDetail] = list
|
||||||
|
const parallelI18n = 'PARALLEL'
|
||||||
|
// format will change the list...
|
||||||
|
const result = format(cloneDeep(list) as any, () => parallelI18n)
|
||||||
|
|
||||||
|
test('parallel should put nodes in details', () => {
|
||||||
|
expect(result as any).toEqual([
|
||||||
|
{
|
||||||
|
...parallelNode,
|
||||||
|
parallelDetail: {
|
||||||
|
isParallelStartNode: true,
|
||||||
|
parallelTitle: `${parallelI18n}-1`,
|
||||||
|
children: [
|
||||||
|
parallelNode,
|
||||||
|
{
|
||||||
|
...parallelDetail[0],
|
||||||
|
parallelDetail: {
|
||||||
|
branchTitle: `${parallelI18n}-1-A`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
...parallelDetail[1],
|
||||||
|
parallelDetail: {
|
||||||
|
branchTitle: `${parallelI18n}-1-B`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
parallelDetail[2],
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
])
|
||||||
|
})
|
||||||
|
})
|
||||||
Loading…
Reference in New Issue