d2/e2etests/todo_test.go

25 lines
365 B
Go
Raw Normal View History

package e2etests
import (
_ "embed"
"testing"
)
func testTodo(t *testing.T) {
tcs := []testCase{
// https://github.com/terrastruct/d2/issues/24
// string monstrosity from not being able to escape backticks within string literals
{
skip: true,
name: "backtick",
script: `md: |md
` + "`" + "code`" + `
|
a -> md -> b
`,
},
}
runa(t, tcs)
}