simpler testing

This commit is contained in:
Gavin Nishizawa 2023-09-27 15:30:40 -07:00
parent 5ddfdd42a1
commit 3b53bc5ff1
No known key found for this signature in database
GPG key ID: AE3B177777CE55CD
2 changed files with 37 additions and 35 deletions

View file

@ -137,7 +137,7 @@ func run(t *testing.T, tc testCase) {
}
layoutsTested := []string{"dagre"}
if !tc.justDagre {
if !tc.justDagre && false {
layoutsTested = append(layoutsTested, "elk")
}

View file

@ -1,43 +1,45 @@
direction: right
outer-grid -> outer-container
# outer-grid -> outer-container
outer-grid: {
grid-columns: 1
# outer-grid: {
grid-columns: 1
inner-grid -> container -> etc
# okok # -> container # -> etc
container: {
label.near: top-left
# edges not yet supported here since they must be direct grid children
a
b
c
}
container: {
label.near: top-left
# edges not yet supported here since they must be direct grid children
a
b
# c
inner-grid: {
grid-rows: 1
1
2
3
# edges here are not supported yet since this is inside another grid
}
a -> b
}
outer-container: {
grid -> container
# inner-grid: {
# # grid-rows: 1
# # 1
# # 2
# # 3
# # edges here are not supported yet since this is inside another grid
# }
# }
grid: {
grid-rows: 1
# direct child edges ok in least nested grid
1 -> 2 -> 3
}
# outer-container: {
# grid -> container
container: {
# non grid edges ok
4 -> 5 -> 6
nested container: {
# nested non grid edges ok
7 -> 8
}
}
}
# grid: {
# grid-rows: 1
# # direct child edges ok in least nested grid
# 1 -> 2 -> 3
# }
# container: {
# # non grid edges ok
# 4 -> 5 -> 6
# nested container: {
# # nested non grid edges ok
# 7 -> 8
# }
# }
# }