From 11237412776b84d4378b63adc2212d1f6e4d816f Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Wed, 8 Oct 2014 15:37:25 +1100 Subject: [PATCH] add additional template literal test --- test/fixtures/template-literals/statement/actual.js | 1 + test/fixtures/template-literals/statement/expected.js | 1 + 2 files changed, 2 insertions(+) create mode 100644 test/fixtures/template-literals/statement/actual.js create mode 100644 test/fixtures/template-literals/statement/expected.js 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);