d2/e2etests/todo_test.go
Alexander Wang 524c089a74 oss
Co-authored-by: Anmol Sethi <hi@nhooyr.io>
2022-11-03 06:54:49 -07:00

24 lines
365 B
Go

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)
}