diff --git a/test/fixtures/template-literals/statement/actual.js b/test/fixtures/template-literals/statement/actual.js new file mode 100644 index 0000000000..c7506efc90 --- /dev/null +++ b/test/fixtures/template-literals/statement/actual.js @@ -0,0 +1 @@ +var foo = `test ${foo + bar}`; diff --git a/test/fixtures/template-literals/statement/expected.js b/test/fixtures/template-literals/statement/expected.js new file mode 100644 index 0000000000..4d5209dbd6 --- /dev/null +++ b/test/fixtures/template-literals/statement/expected.js @@ -0,0 +1 @@ +var foo = "test " + (foo + bar);