diff options
author | 2022-03-15 05:48:04 -0700 | |
---|---|---|
committer | 2022-03-15 05:48:04 -0700 | |
commit | 6b903de12cb0ec4ca715d92c90d6c9b3bd716011 (patch) | |
tree | fd94e4ab2493a38a504673a28d6277de44d4863b /integration/snapshots/template-literal.js | |
parent | f1f3501628fcabc1f256b2367ed57063eed3fe5e (diff) | |
download | bun-6b903de12cb0ec4ca715d92c90d6c9b3bd716011.tar.gz bun-6b903de12cb0ec4ca715d92c90d6c9b3bd716011.tar.zst bun-6b903de12cb0ec4ca715d92c90d6c9b3bd716011.zip |
:camera:
Diffstat (limited to 'integration/snapshots/template-literal.js')
-rw-r--r-- | integration/snapshots/template-literal.js | 8 |
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 |