github.com/hzck/speedroute@v0.0.0-20201115191102-403b7d0e443f/algorithm/tests/basic/one_edge_wrong_direction.json (about) 1 { 2 "name": "One edge wrong direction", 3 "description": "One edge pointing in wrong direction.", 4 "testing": "No edges pointing in wrong direction is added to the path.", 5 "visual": "START->1, 1->END, END->START", 6 "nodes": [ 7 { 8 "id": "START" 9 }, 10 { 11 "id": "END" 12 }, 13 { 14 "id": "1" 15 } 16 ], 17 "edges": [ 18 { 19 "from": "END", 20 "to": "START" 21 }, 22 { 23 "from": "START", 24 "to": "1" 25 }, 26 { 27 "from": "1", 28 "to": "END" 29 } 30 ], 31 "startId": "START", 32 "endId": "END" 33 }