From b52c474ca7196aad14f2c6118dcf30ac1bf072ad Mon Sep 17 00:00:00 2001 From: Corbin Crutchley Date: Wed, 13 May 2026 18:22:05 -0400 Subject: [PATCH] chore: fix snapshots --- packages/compiler/tests/__snapshots__/index.spec.ts.snap | 4 ++-- sample/array.json.blot | 2 +- sample/top-await.json.blot | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/compiler/tests/__snapshots__/index.spec.ts.snap b/packages/compiler/tests/__snapshots__/index.spec.ts.snap index 8144988..ac3b338 100644 --- a/packages/compiler/tests/__snapshots__/index.spec.ts.snap +++ b/packages/compiler/tests/__snapshots__/index.spec.ts.snap @@ -11,7 +11,7 @@ exports[`compiles a basic file 1`] = ` exports[`compiles a top-level await file 1`] = ` " { - "test": 123 + "test": "world" } " `; @@ -19,7 +19,7 @@ exports[`compiles a top-level await file 1`] = ` exports[`compiles an array-interpolated file 1`] = ` " { - "test": 123 + "test": "one,two,three" } " `; diff --git a/sample/array.json.blot b/sample/array.json.blot index 110042d..873eed2 100644 --- a/sample/array.json.blot +++ b/sample/array.json.blot @@ -4,6 +4,6 @@ const hello = 123; { - "test": <> + "test": "<>" } diff --git a/sample/top-await.json.blot b/sample/top-await.json.blot index 3eb996c..79642c3 100644 --- a/sample/top-await.json.blot +++ b/sample/top-await.json.blot @@ -8,6 +8,6 @@ const data: any = await new Promise(resolve => { { - "test": <> + "test": "<>" } -- 2.51.2