diff options
author | Austin Schaffer <austin.schaffer@ryansg.com> | 2019-12-19 11:52:12 -0500 |
---|---|---|
committer | Schaffer, Austin <austin.schaffer@ryansg.com> | 2019-12-19 14:42:10 -0500 |
commit | e2a9d17dc6e47c4df46f57904a886fbfcab71ed9 (patch) | |
tree | c7e5d5dd90d5ceabbafd1ce7731a857dcf8d2536 /test | |
parent | caf2c776b6422b2d6a7ae80110fe9a69947e032a (diff) | |
download | liza-e2a9d17dc6e47c4df46f57904a886fbfcab71ed9.tar.gz liza-e2a9d17dc6e47c4df46f57904a886fbfcab71ed9.tar.bz2 liza-e2a9d17dc6e47c4df46f57904a886fbfcab71ed9.zip |
[DEV-5312] Do not use Object.create when applying delta
Diffstat (limited to 'test')
-rw-r--r-- | test/system/DeltaProcessorTest.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/system/DeltaProcessorTest.ts b/test/system/DeltaProcessorTest.ts index 84f955a..e204165 100644 --- a/test/system/DeltaProcessorTest.ts +++ b/test/system/DeltaProcessorTest.ts @@ -63,6 +63,7 @@ describe( 'system.DeltaProcessor', () => lastUpdate: 123123123, data: { + bar: [ 'initial and unchanged' ], foo: [ 'third' ], state: [ 'a', 'b', 'c', 'd' ], }, @@ -126,6 +127,7 @@ describe( 'system.DeltaProcessor', () => state: [ undefined, null ], }, bucket: { + bar: [ 'initial and unchanged' ], foo: [ 'first' ], state: [ 'a', 'b' ], }, @@ -140,6 +142,7 @@ describe( 'system.DeltaProcessor', () => state: [ undefined, null ], }, bucket: { + bar: [ 'initial and unchanged' ], foo: [ 'first' ], state: [ 'a', 'b' ], }, @@ -157,6 +160,7 @@ describe( 'system.DeltaProcessor', () => state: [ undefined, undefined, null ], }, bucket: { + bar: [ 'initial and unchanged' ], foo: [ 'second' ], state: [ 'a', 'b', 'c' ], }, @@ -171,6 +175,7 @@ describe( 'system.DeltaProcessor', () => state: [ undefined, undefined, null ], }, bucket: { + bar: [ 'initial and unchanged' ], foo: [ 'second' ], state: [ 'a', 'b', 'c' ], }, @@ -188,6 +193,7 @@ describe( 'system.DeltaProcessor', () => state: [ undefined, undefined, undefined, null ], }, bucket: { + bar: [ 'initial and unchanged' ], foo: [ 'third' ], state: [ 'a', 'b', 'c', 'd' ], }, |