From af8426579e3e5b2570aaf1a663fe9a0403b7eefb Mon Sep 17 00:00:00 2001 From: konnorrogers Date: Tue, 13 Jun 2023 15:59:16 -0400 Subject: [PATCH] prettier --- src/components/input/input.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/input.test.ts b/src/components/input/input.test.ts index 3945105f..12e03a8c 100644 --- a/src/components/input/input.test.ts +++ b/src/components/input/input.test.ts @@ -182,7 +182,7 @@ describe('', () => { it('should serialize its name and value with JSON', async () => { const form = await fixture(html`
`); - const json = serialize(form) as { a: "1" }; + const json = serialize(form) as { a: '1' }; expect(json.a).to.equal('1'); });