diff --git a/src/components/input/input.test.ts b/src/components/input/input.test.ts index 3945105fc..12e03a8c4 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'); });