0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-17 23:11:29 -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 output = `{"a":[11,1],"b":[11,-1]}`;
assert.equal(serializeProps(input), output);
})
});
it('cannot serialize a cyclic reference', () => {
const a = {};
a.b = a;