d2/e2etests/todo_test.go

22 lines
314 B
Go
Raw Normal View History

package e2etests
import (
_ "embed"
"testing"
)
func testTodo(t *testing.T) {
2022-11-11 23:41:24 +00:00
tcs := []testCase{
{
// issue https://github.com/terrastruct/d2/issues/71
name: "container_child_edge",
script: `
container.first -> container.second: 1->2
container -> container.second: c->2
`,
},
}
runa(t, tcs)
}