mirror of
https://github.com/withastro/astro.git
synced 2025-03-24 23:21:57 -05:00
[ci] format
This commit is contained in:
parent
2490cebdb9
commit
8309d7f5dd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue