d2/e2etests/regression_test.go

17 lines
189 B
Go
Raw Normal View History

package e2etests
import (
"testing"
)
func testRegression(t *testing.T) {
2022-12-05 19:10:45 +00:00
tcs := []testCase{
{
name: "dagre_id_with_newline",
script: `ninety\nnine`,
},
}
runa(t, tcs)
}