0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-24 23:21:57 -05:00

[ci] format

This commit is contained in:
Matt Kane 2024-10-04 10:54:21 +00:00 committed by astrobot-houston
parent 2490cebdb9
commit 8309d7f5dd

View file

@ -93,7 +93,7 @@ describe('serialize', () => {
const input = { a: Infinity, b: -Infinity }; const input = { a: Infinity, b: -Infinity };
const output = `{"a":[11,1],"b":[11,-1]}`; const output = `{"a":[11,1],"b":[11,-1]}`;
assert.equal(serializeProps(input), output); assert.equal(serializeProps(input), output);
}) });
it('cannot serialize a cyclic reference', () => { it('cannot serialize a cyclic reference', () => {
const a = {}; const a = {};
a.b = a; a.b = a;