From bcc52540a5d672569960c20c9058379108ccc7b2 Mon Sep 17 00:00:00 2001 From: matthewp Date: Wed, 21 Sep 2022 16:23:49 +0000 Subject: [PATCH] [ci] format --- packages/astro/test/serialize.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/astro/test/serialize.test.js b/packages/astro/test/serialize.test.js index c3ff0e5bd..cab016648 100644 --- a/packages/astro/test/serialize.test.js +++ b/packages/astro/test/serialize.test.js @@ -43,17 +43,17 @@ describe('serialize', () => { expect(serializeProps(input)).to.equal(output); }); it('serializes a Uint8Array', () => { - const input = { a: new Uint8Array([1,2,3]) }; + const input = { a: new Uint8Array([1, 2, 3]) }; const output = `{"a":[8,"[1,2,3]"]}`; expect(serializeProps(input)).to.equal(output); }); it('serializes a Uint16Array', () => { - const input = { a: new Uint16Array([1,2,3]) }; + const input = { a: new Uint16Array([1, 2, 3]) }; const output = `{"a":[9,"[1,2,3]"]}`; expect(serializeProps(input)).to.equal(output); }); it('serializes a Uint32Array', () => { - const input = { a: new Uint32Array([1,2,3]) }; + const input = { a: new Uint32Array([1, 2, 3]) }; const output = `{"a":[10,"[1,2,3]"]}`; expect(serializeProps(input)).to.equal(output); });