add format test

This commit is contained in:
Gavin Nishizawa 2023-09-22 14:52:16 -07:00
parent 20190c1224
commit 938d601fbc
No known key found for this signature in database
GPG key ID: AE3B177777CE55CD

View file

@ -810,6 +810,25 @@ steps: {
step-1-content
}
}
`,
},
{
name: "substitution_mid_string",
in: `vars: {
test: hello
}
mybox: {
label: prefix${test}suffix
}
`,
exp: `vars: {
test: hello
}
mybox: {
label: prefix${test}suffix
}
`,
},
}