aboutsummaryrefslogtreecommitdiff
path: root/integration/snapshots/template-literal.js
diff options
context:
space:
mode:
Diffstat (limited to 'integration/snapshots/template-literal.js')
-rw-r--r--integration/snapshots/template-literal.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/integration/snapshots/template-literal.js b/integration/snapshots/template-literal.js
index e5c4c09a7..2c0d55e8e 100644
--- a/integration/snapshots/template-literal.js
+++ b/integration/snapshots/template-literal.js
@@ -6,7 +6,7 @@ const fooNoBracesUTF8 = css`
`;
const fooNoBracesUT16 = css`
before
- 🙃
+ \uD83D\uDE43
after
`;
const fooUTF8 = css`
@@ -17,13 +17,13 @@ const fooUTF8 = css`
`;
const fooUTF16 = css`
before
- 🙃 ${true}
+ \uD83D\uDE43 ${true}
after
`;
const templateLiteralWhichDefinesAFunction = ((...args) => args[args.length - 1]().toString())`
before
- 🙃 ${() => true}
+ \uD83D\uDE43 ${() => true}
after
`;
@@ -35,3 +35,5 @@ export function test() {
console.assert(templateLiteralWhichDefinesAFunction.includes("true"), "Expected fooFunction to include 'true'");
return testDone(import.meta.url);
}
+
+//# sourceMappingURL=http://localhost:8080/template-literal.js.map