This commit is contained in:
konnorrogers
2023-06-13 15:59:16 -04:00
parent 6b9ba9becf
commit af8426579e

View File

@@ -182,7 +182,7 @@ describe('<sl-input>', () => {
it('should serialize its name and value with JSON', async () => {
const form = await fixture<HTMLFormElement>(html` <form><sl-input name="a" value="1"></sl-input></form> `);
const json = serialize(form) as { a: "1" };
const json = serialize(form) as { a: '1' };
expect(json.a).to.equal('1');
});