diff options
author | 2022-09-21 16:23:49 +0000 | |
---|---|---|
committer | 2022-09-21 16:23:49 +0000 | |
commit | bcc52540a5d672569960c20c9058379108ccc7b2 (patch) | |
tree | c58e05131d72bc8140a685d23693c53700a5f789 | |
parent | a961aa3c2fa946898fd209dfc70a7b5472b60817 (diff) | |
download | astro-bcc52540a5d672569960c20c9058379108ccc7b2.tar.gz astro-bcc52540a5d672569960c20c9058379108ccc7b2.tar.zst astro-bcc52540a5d672569960c20c9058379108ccc7b2.zip |
[ci] format
-rw-r--r-- | packages/astro/test/serialize.test.js | 6 |
1 files 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); }); |