aboutsummaryrefslogtreecommitdiff
path: root/integration/snapshots/template-literal.debug.js
diff options
context:
space:
mode:
Diffstat (limited to 'integration/snapshots/template-literal.debug.js')
-rw-r--r--integration/snapshots/template-literal.debug.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/integration/snapshots/template-literal.debug.js b/integration/snapshots/template-literal.debug.js
index 6fd3adb37..2c0d55e8e 100644
--- a/integration/snapshots/template-literal.debug.js
+++ b/integration/snapshots/template-literal.debug.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
`;