github.com/hzck/speedroute@v0.0.0-20201115191102-403b7d0e443f/algorithm/tests/basic/one_edge.json (about)

     1  {
     2    "name": "One edge",
     3    "description": "Most basic graph with one edge.",
     4    "testing": "Finding the single path available.",
     5    "visual": "START->END",
     6    "nodes": [
     7      {
     8        "id": "START"
     9      },
    10      {
    11        "id": "END"
    12      }
    13    ],
    14    "edges": [
    15      {
    16        "from": "START",
    17        "to": "END"
    18      }
    19    ],
    20    "startId": "START",
    21    "endId": "END"
    22  }