We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have two similar objects with empty object. When compressing with zipson part of state disappearing.
I wrote two tests in test/full/object.ts:
test/full/object.ts
it('nested empty object', function() { testPackUnpack({ a: { 1: {} }, c: 42 }) }) it('nested empty object template', function() { testPackUnpack({ a: { 1: {} }, b: { 1: {} }, c: 42 }) })
Second test is failing
1) object nested empty template: unpacked integrity + expected - actual { - "a": {} - "b": {} + "a": { + "1": {} + } + "b": { + "1": {} + } "c": 42 }
The text was updated successfully, but these errors were encountered:
Good catch, let me have a look at the PR when I’m back home and get it merged. Thank you @mnsrv
Sorry, something went wrong.
@jgranstrom any update about this topic?
Successfully merging a pull request may close this issue.
I have two similar objects with empty object. When compressing with zipson part of state disappearing.
I wrote two tests in
test/full/object.ts
:Second test is failing
The text was updated successfully, but these errors were encountered: