16 lines
189 B
Go
16 lines
189 B
Go
package e2etests
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func testRegression(t *testing.T) {
|
|
tcs := []testCase{
|
|
{
|
|
name: "dagre_id_with_newline",
|
|
script: `ninety\nnine`,
|
|
},
|
|
}
|
|
|
|
runa(t, tcs)
|
|
}
|