summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2022-09-21 16:23:49 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2022-09-21 16:23:49 +0000
commitbcc52540a5d672569960c20c9058379108ccc7b2 (patch)
treec58e05131d72bc8140a685d23693c53700a5f789
parenta961aa3c2fa946898fd209dfc70a7b5472b60817 (diff)
downloadastro-bcc52540a5d672569960c20c9058379108ccc7b2.tar.gz
astro-bcc52540a5d672569960c20c9058379108ccc7b2.tar.zst
astro-bcc52540a5d672569960c20c9058379108ccc7b2.zip
[ci] format
-rw-r--r--packages/astro/test/serialize.test.js6
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);
});